-- ========================================================== -- lingyue_zhibao 数据库完整初始化脚本 -- 包含:DDL建表 + 视图 + 初始数据 -- 生成时间:2025-02-13 -- ========================================================== -- 如果数据库已存在,先删除重建 -- DROP DATABASE IF EXISTS lingyue_zhibao; -- CREATE DATABASE lingyue_zhibao WITH ENCODING 'UTF8'; -- ========================================================== -- PART 1: 表结构 (DDL) -- ========================================================== CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public; CREATE TABLE public.edge_properties ( id bigint NOT NULL, edge_id bigint NOT NULL, prop_key character varying(100) NOT NULL, prop_value text, prop_json jsonb, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.edge_properties_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.edge_properties_id_seq OWNED BY public.edge_properties.id; CREATE TABLE public.edge_types ( id integer NOT NULL, type_code character varying(50) NOT NULL, type_name character varying(100) NOT NULL, from_node_type character varying(50), to_node_type character varying(50), description text, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.edge_types_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.edge_types_id_seq OWNED BY public.edge_types.id; CREATE TABLE public.edges ( id bigint NOT NULL, edge_type character varying(50) NOT NULL, from_node_id bigint NOT NULL, to_node_id bigint NOT NULL, sort_order integer DEFAULT 0, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.edges_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.edges_id_seq OWNED BY public.edges.id; CREATE TABLE public.node_properties ( id bigint NOT NULL, node_id bigint NOT NULL, prop_key character varying(100) NOT NULL, prop_value text, prop_json jsonb, prop_number numeric(20,4), prop_date timestamp without time zone, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.node_properties_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.node_properties_id_seq OWNED BY public.node_properties.id; CREATE TABLE public.node_types ( id integer NOT NULL, type_code character varying(50) NOT NULL, type_name character varying(100) NOT NULL, description text, icon character varying(100), color character varying(20), created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.node_types_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.node_types_id_seq OWNED BY public.node_types.id; CREATE TABLE public.nodes ( id bigint NOT NULL, node_type character varying(50) NOT NULL, node_key character varying(200), name character varying(500) NOT NULL, status character varying(50) DEFAULT 'active'::character varying, created_by bigint, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.nodes_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.nodes_id_seq OWNED BY public.nodes.id; CREATE TABLE public.property_definitions ( id integer NOT NULL, owner_type character varying(20) NOT NULL, target_type character varying(50) NOT NULL, prop_key character varying(100) NOT NULL, prop_name character varying(200) NOT NULL, data_type character varying(50) NOT NULL, required boolean DEFAULT false, default_value text, description text, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.property_definitions_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.property_definitions_id_seq OWNED BY public.property_definitions.id; CREATE TABLE public.sys_configs ( id integer NOT NULL, config_key character varying(100) NOT NULL, config_value text, config_json jsonb, config_type character varying(50), description text, is_public boolean DEFAULT false, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_configs_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_configs_id_seq OWNED BY public.sys_configs.id; CREATE TABLE public.sys_dict_items ( id integer NOT NULL, dict_type_id integer NOT NULL, item_code character varying(100) NOT NULL, item_name character varying(200) NOT NULL, item_value text, sort_order integer DEFAULT 0, status character varying(20) DEFAULT 'active'::character varying, extra jsonb, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_dict_items_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_dict_items_id_seq OWNED BY public.sys_dict_items.id; CREATE TABLE public.sys_dict_types ( id integer NOT NULL, dict_code character varying(100) NOT NULL, dict_name character varying(200) NOT NULL, description text, status character varying(20) DEFAULT 'active'::character varying, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_dict_types_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_dict_types_id_seq OWNED BY public.sys_dict_types.id; CREATE TABLE public.sys_files ( id bigint NOT NULL, file_key character varying(100) NOT NULL, original_name character varying(500) NOT NULL, storage_name character varying(200) NOT NULL, storage_path character varying(500) NOT NULL, file_type character varying(100), file_size bigint, md5_hash character varying(32), storage_type character varying(20) DEFAULT 'local'::character varying, bucket character varying(100), url character varying(1000), thumbnail_url character varying(1000), uploaded_by bigint, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_files_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_files_id_seq OWNED BY public.sys_files.id; CREATE TABLE public.sys_login_logs ( id bigint NOT NULL, user_id bigint, username character varying(100), login_type character varying(20), ip_address character varying(50), user_agent text, device_type character varying(50), location character varying(200), status character varying(20) NOT NULL, message text, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_login_logs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_login_logs_id_seq OWNED BY public.sys_login_logs.id; CREATE TABLE public.sys_operation_logs ( id bigint NOT NULL, user_id bigint, username character varying(100), module character varying(100), action character varying(100), method character varying(10), url character varying(500), params text, result text, ip_address character varying(50), user_agent text, duration_ms integer, status character varying(20), error_msg text, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_operation_logs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_operation_logs_id_seq OWNED BY public.sys_operation_logs.id; CREATE TABLE public.sys_permissions ( id integer NOT NULL, perm_code character varying(100) NOT NULL, perm_name character varying(200) NOT NULL, perm_type character varying(20) NOT NULL, parent_id integer, path character varying(500), icon character varying(100), component character varying(200), sort_order integer DEFAULT 0, status character varying(20) DEFAULT 'active'::character varying, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_permissions_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_permissions_id_seq OWNED BY public.sys_permissions.id; CREATE TABLE public.sys_role_permissions ( id integer NOT NULL, role_id integer NOT NULL, permission_id integer NOT NULL, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_role_permissions_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_role_permissions_id_seq OWNED BY public.sys_role_permissions.id; CREATE TABLE public.sys_roles ( id integer NOT NULL, role_code character varying(50) NOT NULL, role_name character varying(100) NOT NULL, description text, sort_order integer DEFAULT 0, status character varying(20) DEFAULT 'active'::character varying, created_by bigint, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_roles_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_roles_id_seq OWNED BY public.sys_roles.id; CREATE TABLE public.sys_sessions ( id bigint NOT NULL, user_id bigint NOT NULL, session_token character varying(255) NOT NULL, refresh_token character varying(255), device_type character varying(50), device_info text, ip_address character varying(50), user_agent text, expires_at timestamp without time zone NOT NULL, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_sessions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_sessions_id_seq OWNED BY public.sys_sessions.id; CREATE TABLE public.sys_tasks ( id bigint NOT NULL, task_type character varying(50) NOT NULL, task_key character varying(100), payload jsonb, status character varying(20) DEFAULT 'pending'::character varying, priority integer DEFAULT 0, retry_count integer DEFAULT 0, max_retries integer DEFAULT 3, result jsonb, error_msg text, started_at timestamp without time zone, finished_at timestamp without time zone, created_by bigint, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_tasks_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_tasks_id_seq OWNED BY public.sys_tasks.id; CREATE TABLE public.sys_user_roles ( id integer NOT NULL, user_id bigint NOT NULL, role_id integer NOT NULL, created_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_user_roles_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_user_roles_id_seq OWNED BY public.sys_user_roles.id; CREATE TABLE public.sys_users ( id bigint NOT NULL, node_id bigint, username character varying(100) NOT NULL, password_hash character varying(255) NOT NULL, salt character varying(50), email character varying(200), phone character varying(20), avatar character varying(500), real_name character varying(100), department character varying(200), "position" character varying(100), status character varying(20) DEFAULT 'active'::character varying, last_login_at timestamp without time zone, last_login_ip character varying(50), login_count integer DEFAULT 0, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now() ); CREATE SEQUENCE public.sys_users_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.sys_users_id_seq OWNED BY public.sys_users.id; CREATE VIEW public.v_attachments AS SELECT id, name AS display_name, node_key AS file_key, created_at, updated_at, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'file_name'::text))) AS file_name, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'file_path'::text))) AS file_path, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'file_type'::text))) AS file_type, (( SELECT node_properties.prop_number FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'file_size'::text))))::bigint AS file_size, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'parse_status'::text))) AS parse_status, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'parsed_text'::text))) AS parsed_text, ( SELECT node_properties.prop_date FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'parsed_at'::text))) AS parsed_at, ( SELECT count(*) AS count FROM public.edges e WHERE ((e.from_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ENTITY'::text))) AS entity_count, ( SELECT e.from_node_id FROM public.edges e WHERE ((e.to_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ATTACHMENT'::text)) LIMIT 1) AS project_id, ( SELECT e.sort_order FROM public.edges e WHERE ((e.to_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ATTACHMENT'::text)) LIMIT 1) AS sort_order FROM public.nodes n WHERE ((node_type)::text = 'ATTACHMENT'::text); CREATE VIEW public.v_entities AS SELECT id, name AS entity_text, node_key AS entity_key, created_at, updated_at, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'entity_type'::text))) AS entity_type, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'business_label'::text))) AS business_label, ( SELECT node_properties.prop_number FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'confidence'::text))) AS confidence, (( SELECT node_properties.prop_number FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'occurrence_count'::text))))::integer AS occurrence_count, ( SELECT e.from_node_id FROM public.edges e WHERE ((e.to_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ENTITY'::text)) LIMIT 1) AS attachment_id FROM public.nodes n WHERE ((node_type)::text = 'ENTITY'::text); CREATE VIEW public.v_project_elements AS SELECT id, name AS element_name, node_key AS element_key, created_at, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'element_type'::text))) AS element_type, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'namespace'::text))) AS namespace, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'field_name'::text))) AS field_name, ( SELECT node_properties.prop_json FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'table_columns'::text))) AS table_columns, (( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'required'::text))))::boolean AS required, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'default_value'::text))) AS default_value, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'description'::text))) AS description, ( SELECT e.from_node_id FROM public.edges e WHERE ((e.to_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ELEMENT'::text)) LIMIT 1) AS project_id, ( SELECT e.sort_order FROM public.edges e WHERE ((e.to_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ELEMENT'::text)) LIMIT 1) AS sort_order FROM public.nodes n WHERE ((node_type)::text = 'ELEMENT'::text); CREATE VIEW public.v_project_values AS SELECT id AS value_id, node_key AS element_key, created_at, updated_at, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'value_text'::text))) AS value_text, ( SELECT node_properties.prop_json FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'value_json'::text))) AS value_json, (( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'is_filled'::text))))::boolean AS is_filled, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'fill_source'::text))) AS fill_source, ( SELECT e.from_node_id FROM public.edges e WHERE ((e.to_node_id = n.id) AND ((e.edge_type)::text = 'HAS_VALUE'::text)) LIMIT 1) AS project_id FROM public.nodes n WHERE ((node_type)::text = 'VALUE'::text); CREATE VIEW public.v_projects AS SELECT id, name AS title, node_key AS project_code, status, created_at, updated_at, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'description'::text))) AS description, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'template_type'::text))) AS template_type, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'content_html'::text))) AS content_html, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'content_markdown'::text))) AS content_markdown, ( SELECT count(*) AS count FROM public.edges e WHERE ((e.from_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ELEMENT'::text))) AS element_count, ( SELECT count(*) AS count FROM public.edges e WHERE ((e.from_node_id = n.id) AND ((e.edge_type)::text = 'HAS_ATTACHMENT'::text))) AS attachment_count, ( SELECT count(*) AS count FROM public.edges e WHERE ((e.from_node_id = n.id) AND ((e.edge_type)::text = 'HAS_RULE'::text))) AS rule_count, ( SELECT count(*) AS count FROM (public.edges e JOIN public.nodes v ON ((v.id = e.to_node_id))) WHERE ((e.from_node_id = n.id) AND ((e.edge_type)::text = 'HAS_VALUE'::text) AND (EXISTS ( SELECT 1 FROM public.node_properties WHERE ((node_properties.node_id = v.id) AND ((node_properties.prop_key)::text = 'is_filled'::text) AND (node_properties.prop_value = 'true'::text)))))) AS filled_count, ( SELECT n2.id FROM (public.edges e JOIN public.nodes n2 ON ((n2.id = e.to_node_id))) WHERE ((e.from_node_id = n.id) AND ((e.edge_type)::text = 'COPIED_FROM'::text)) LIMIT 1) AS source_project_id, created_by, ( SELECT sys_users.username FROM public.sys_users WHERE (sys_users.node_id = n.created_by)) AS created_by_name FROM public.nodes n WHERE ((node_type)::text = 'PROJECT'::text); CREATE VIEW public.v_rule_inputs AS SELECT e.id AS input_id, e.from_node_id AS rule_id, e.to_node_id AS source_node_id, e.sort_order, ( SELECT edge_properties.prop_value FROM public.edge_properties WHERE ((edge_properties.edge_id = e.id) AND ((edge_properties.prop_key)::text = 'input_key'::text))) AS input_key, ( SELECT edge_properties.prop_value FROM public.edge_properties WHERE ((edge_properties.edge_id = e.id) AND ((edge_properties.prop_key)::text = 'input_name'::text))) AS input_name, ( SELECT edge_properties.prop_value FROM public.edge_properties WHERE ((edge_properties.edge_id = e.id) AND ((edge_properties.prop_key)::text = 'input_type'::text))) AS input_type, ( SELECT edge_properties.prop_value FROM public.edge_properties WHERE ((edge_properties.edge_id = e.id) AND ((edge_properties.prop_key)::text = 'fixed_value'::text))) AS fixed_value, n.node_type AS source_type, n.name AS source_name FROM (public.edges e JOIN public.nodes n ON ((n.id = e.to_node_id))) WHERE ((e.edge_type)::text = 'INPUT_FROM'::text); CREATE VIEW public.v_rules AS SELECT id, name AS rule_name, node_key AS element_key, status, created_at, updated_at, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'description'::text))) AS description, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'rule_type'::text))) AS rule_type, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'action_type'::text))) AS action_type, ( SELECT node_properties.prop_json FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'action_config'::text))) AS action_config, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'dsl_content'::text))) AS dsl_content, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'last_output_text'::text))) AS last_output_text, ( SELECT node_properties.prop_json FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'last_output_json'::text))) AS last_output_json, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'last_run_status'::text))) AS last_run_status, ( SELECT node_properties.prop_date FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'last_run_time'::text))) AS last_run_time, ( SELECT node_properties.prop_value FROM public.node_properties WHERE ((node_properties.node_id = n.id) AND ((node_properties.prop_key)::text = 'last_run_error'::text))) AS last_run_error, ( SELECT e.from_node_id FROM public.edges e WHERE ((e.to_node_id = n.id) AND ((e.edge_type)::text = 'HAS_RULE'::text)) LIMIT 1) AS project_id FROM public.nodes n WHERE ((node_type)::text = 'RULE'::text); ALTER TABLE ONLY public.edge_properties ALTER COLUMN id SET DEFAULT nextval('public.edge_properties_id_seq'::regclass); ALTER TABLE ONLY public.edge_types ALTER COLUMN id SET DEFAULT nextval('public.edge_types_id_seq'::regclass); ALTER TABLE ONLY public.edges ALTER COLUMN id SET DEFAULT nextval('public.edges_id_seq'::regclass); ALTER TABLE ONLY public.node_properties ALTER COLUMN id SET DEFAULT nextval('public.node_properties_id_seq'::regclass); ALTER TABLE ONLY public.node_types ALTER COLUMN id SET DEFAULT nextval('public.node_types_id_seq'::regclass); ALTER TABLE ONLY public.nodes ALTER COLUMN id SET DEFAULT nextval('public.nodes_id_seq'::regclass); ALTER TABLE ONLY public.property_definitions ALTER COLUMN id SET DEFAULT nextval('public.property_definitions_id_seq'::regclass); ALTER TABLE ONLY public.sys_configs ALTER COLUMN id SET DEFAULT nextval('public.sys_configs_id_seq'::regclass); ALTER TABLE ONLY public.sys_dict_items ALTER COLUMN id SET DEFAULT nextval('public.sys_dict_items_id_seq'::regclass); ALTER TABLE ONLY public.sys_dict_types ALTER COLUMN id SET DEFAULT nextval('public.sys_dict_types_id_seq'::regclass); ALTER TABLE ONLY public.sys_files ALTER COLUMN id SET DEFAULT nextval('public.sys_files_id_seq'::regclass); ALTER TABLE ONLY public.sys_login_logs ALTER COLUMN id SET DEFAULT nextval('public.sys_login_logs_id_seq'::regclass); ALTER TABLE ONLY public.sys_operation_logs ALTER COLUMN id SET DEFAULT nextval('public.sys_operation_logs_id_seq'::regclass); ALTER TABLE ONLY public.sys_permissions ALTER COLUMN id SET DEFAULT nextval('public.sys_permissions_id_seq'::regclass); ALTER TABLE ONLY public.sys_role_permissions ALTER COLUMN id SET DEFAULT nextval('public.sys_role_permissions_id_seq'::regclass); ALTER TABLE ONLY public.sys_roles ALTER COLUMN id SET DEFAULT nextval('public.sys_roles_id_seq'::regclass); ALTER TABLE ONLY public.sys_sessions ALTER COLUMN id SET DEFAULT nextval('public.sys_sessions_id_seq'::regclass); ALTER TABLE ONLY public.sys_tasks ALTER COLUMN id SET DEFAULT nextval('public.sys_tasks_id_seq'::regclass); ALTER TABLE ONLY public.sys_user_roles ALTER COLUMN id SET DEFAULT nextval('public.sys_user_roles_id_seq'::regclass); ALTER TABLE ONLY public.sys_users ALTER COLUMN id SET DEFAULT nextval('public.sys_users_id_seq'::regclass); ALTER TABLE ONLY public.edge_properties ADD CONSTRAINT edge_properties_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.edge_types ADD CONSTRAINT edge_types_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.edge_types ADD CONSTRAINT edge_types_type_code_from_node_type_to_node_type_key UNIQUE (type_code, from_node_type, to_node_type); ALTER TABLE ONLY public.edges ADD CONSTRAINT edges_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.node_properties ADD CONSTRAINT node_properties_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.node_types ADD CONSTRAINT node_types_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.node_types ADD CONSTRAINT node_types_type_code_key UNIQUE (type_code); ALTER TABLE ONLY public.nodes ADD CONSTRAINT nodes_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.property_definitions ADD CONSTRAINT property_definitions_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_configs ADD CONSTRAINT sys_configs_config_key_key UNIQUE (config_key); ALTER TABLE ONLY public.sys_configs ADD CONSTRAINT sys_configs_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_dict_items ADD CONSTRAINT sys_dict_items_dict_type_id_item_code_key UNIQUE (dict_type_id, item_code); ALTER TABLE ONLY public.sys_dict_items ADD CONSTRAINT sys_dict_items_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_dict_types ADD CONSTRAINT sys_dict_types_dict_code_key UNIQUE (dict_code); ALTER TABLE ONLY public.sys_dict_types ADD CONSTRAINT sys_dict_types_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_files ADD CONSTRAINT sys_files_file_key_key UNIQUE (file_key); ALTER TABLE ONLY public.sys_files ADD CONSTRAINT sys_files_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_login_logs ADD CONSTRAINT sys_login_logs_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_operation_logs ADD CONSTRAINT sys_operation_logs_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_permissions ADD CONSTRAINT sys_permissions_perm_code_key UNIQUE (perm_code); ALTER TABLE ONLY public.sys_permissions ADD CONSTRAINT sys_permissions_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_role_permissions ADD CONSTRAINT sys_role_permissions_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_role_permissions ADD CONSTRAINT sys_role_permissions_role_id_permission_id_key UNIQUE (role_id, permission_id); ALTER TABLE ONLY public.sys_roles ADD CONSTRAINT sys_roles_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_roles ADD CONSTRAINT sys_roles_role_code_key UNIQUE (role_code); ALTER TABLE ONLY public.sys_sessions ADD CONSTRAINT sys_sessions_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_sessions ADD CONSTRAINT sys_sessions_session_token_key UNIQUE (session_token); ALTER TABLE ONLY public.sys_tasks ADD CONSTRAINT sys_tasks_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_user_roles ADD CONSTRAINT sys_user_roles_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_user_roles ADD CONSTRAINT sys_user_roles_user_id_role_id_key UNIQUE (user_id, role_id); ALTER TABLE ONLY public.sys_users ADD CONSTRAINT sys_users_pkey PRIMARY KEY (id); ALTER TABLE ONLY public.sys_users ADD CONSTRAINT sys_users_username_key UNIQUE (username); CREATE INDEX idx_edge_props_edge ON public.edge_properties USING btree (edge_id); CREATE UNIQUE INDEX idx_edge_props_unique ON public.edge_properties USING btree (edge_id, prop_key); CREATE INDEX idx_edges_from ON public.edges USING btree (from_node_id); CREATE INDEX idx_edges_to ON public.edges USING btree (to_node_id); CREATE INDEX idx_edges_type ON public.edges USING btree (edge_type); CREATE INDEX idx_edges_type_from ON public.edges USING btree (edge_type, from_node_id); CREATE INDEX idx_edges_type_to ON public.edges USING btree (edge_type, to_node_id); CREATE UNIQUE INDEX idx_edges_unique ON public.edges USING btree (edge_type, from_node_id, to_node_id); CREATE INDEX idx_node_props_key ON public.node_properties USING btree (prop_key); CREATE INDEX idx_node_props_node ON public.node_properties USING btree (node_id); CREATE UNIQUE INDEX idx_node_props_unique ON public.node_properties USING btree (node_id, prop_key); CREATE INDEX idx_nodes_created_at ON public.nodes USING btree (created_at DESC); CREATE INDEX idx_nodes_created_by ON public.nodes USING btree (created_by); CREATE INDEX idx_nodes_key ON public.nodes USING btree (node_key); CREATE INDEX idx_nodes_type ON public.nodes USING btree (node_type); CREATE UNIQUE INDEX idx_nodes_type_key ON public.nodes USING btree (node_type, node_key) WHERE (node_key IS NOT NULL); CREATE INDEX idx_nodes_type_status ON public.nodes USING btree (node_type, status); CREATE INDEX idx_sys_configs_key ON public.sys_configs USING btree (config_key); CREATE INDEX idx_sys_dict_items_type ON public.sys_dict_items USING btree (dict_type_id); CREATE INDEX idx_sys_dict_types_code ON public.sys_dict_types USING btree (dict_code); CREATE INDEX idx_sys_files_key ON public.sys_files USING btree (file_key); CREATE INDEX idx_sys_files_uploaded ON public.sys_files USING btree (uploaded_by); CREATE INDEX idx_sys_login_logs_created ON public.sys_login_logs USING btree (created_at DESC); CREATE INDEX idx_sys_login_logs_user ON public.sys_login_logs USING btree (user_id); CREATE INDEX idx_sys_operation_logs_created ON public.sys_operation_logs USING btree (created_at DESC); CREATE INDEX idx_sys_operation_logs_user ON public.sys_operation_logs USING btree (user_id); CREATE INDEX idx_sys_permissions_parent ON public.sys_permissions USING btree (parent_id); CREATE INDEX idx_sys_permissions_type ON public.sys_permissions USING btree (perm_type); CREATE INDEX idx_sys_role_permissions_perm ON public.sys_role_permissions USING btree (permission_id); CREATE INDEX idx_sys_role_permissions_role ON public.sys_role_permissions USING btree (role_id); CREATE INDEX idx_sys_roles_code ON public.sys_roles USING btree (role_code); CREATE INDEX idx_sys_sessions_token ON public.sys_sessions USING btree (session_token); CREATE INDEX idx_sys_sessions_user ON public.sys_sessions USING btree (user_id); CREATE INDEX idx_sys_tasks_created ON public.sys_tasks USING btree (created_at DESC); CREATE INDEX idx_sys_tasks_status ON public.sys_tasks USING btree (status); CREATE INDEX idx_sys_tasks_type ON public.sys_tasks USING btree (task_type); CREATE INDEX idx_sys_user_roles_role ON public.sys_user_roles USING btree (role_id); CREATE INDEX idx_sys_user_roles_user ON public.sys_user_roles USING btree (user_id); CREATE INDEX idx_sys_users_node ON public.sys_users USING btree (node_id); CREATE INDEX idx_sys_users_username ON public.sys_users USING btree (username); ALTER TABLE ONLY public.edge_properties ADD CONSTRAINT edge_properties_edge_id_fkey FOREIGN KEY (edge_id) REFERENCES public.edges(id) ON DELETE CASCADE; ALTER TABLE ONLY public.edges ADD CONSTRAINT edges_from_node_id_fkey FOREIGN KEY (from_node_id) REFERENCES public.nodes(id) ON DELETE CASCADE; ALTER TABLE ONLY public.edges ADD CONSTRAINT edges_to_node_id_fkey FOREIGN KEY (to_node_id) REFERENCES public.nodes(id) ON DELETE CASCADE; ALTER TABLE ONLY public.node_properties ADD CONSTRAINT node_properties_node_id_fkey FOREIGN KEY (node_id) REFERENCES public.nodes(id) ON DELETE CASCADE; ALTER TABLE ONLY public.sys_dict_items ADD CONSTRAINT sys_dict_items_dict_type_id_fkey FOREIGN KEY (dict_type_id) REFERENCES public.sys_dict_types(id) ON DELETE CASCADE; ALTER TABLE ONLY public.sys_login_logs ADD CONSTRAINT sys_login_logs_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.sys_users(id) ON DELETE SET NULL; ALTER TABLE ONLY public.sys_permissions ADD CONSTRAINT sys_permissions_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES public.sys_permissions(id) ON DELETE CASCADE; ALTER TABLE ONLY public.sys_role_permissions ADD CONSTRAINT sys_role_permissions_permission_id_fkey FOREIGN KEY (permission_id) REFERENCES public.sys_permissions(id) ON DELETE CASCADE; ALTER TABLE ONLY public.sys_role_permissions ADD CONSTRAINT sys_role_permissions_role_id_fkey FOREIGN KEY (role_id) REFERENCES public.sys_roles(id) ON DELETE CASCADE; ALTER TABLE ONLY public.sys_sessions ADD CONSTRAINT sys_sessions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.sys_users(id) ON DELETE CASCADE; ALTER TABLE ONLY public.sys_user_roles ADD CONSTRAINT sys_user_roles_role_id_fkey FOREIGN KEY (role_id) REFERENCES public.sys_roles(id) ON DELETE CASCADE; ALTER TABLE ONLY public.sys_user_roles ADD CONSTRAINT sys_user_roles_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.sys_users(id) ON DELETE CASCADE; -- ========================================================== -- PART 2: 初始数据 -- ========================================================== BEGIN; -- sys_roles (1 rows) INSERT INTO sys_roles (id, role_code, role_name, description, sort_order, status, created_by, created_at, updated_at) VALUES (1, 'admin', '超级管理员', '拥有所有权限', 0, 'active', NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'); -- sys_users (1 rows) INSERT INTO sys_users (id, node_id, username, password_hash, salt, email, phone, avatar, real_name, department, position, status, last_login_at, last_login_ip, login_count, created_at, updated_at) VALUES (1, NULL, 'admin', '$2a$10$iPQR/hRVyuHsbeawxWdf7u6ka6WmCqGB.a1EnBRfplXaGIHBvRWd6', 'random_salt', NULL, NULL, NULL, '管理员', NULL, NULL, 'active', '2026-02-13 15:39:08.894268', '0:0:0:0:0:0:0:1', 19, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'); -- sys_user_roles (1 rows) INSERT INTO sys_user_roles (id, user_id, role_id, created_at) VALUES (1, 1, 1, '2026-02-13 00:38:50.395930'); -- node_types (6 rows) INSERT INTO node_types (id, type_code, type_name, description, icon, color, created_at) VALUES (4, 'ATTACHMENT', '附件', '项目附件', 'paperclip', '#faad14', '2026-02-13 00:38:50.395930'), (6, 'RULE', '规则', '数据提取规则', 'branches', '#f5222d', '2026-02-13 00:38:50.395930'), (5, 'ENTITY', '实体', 'NER识别的实体', 'user', '#2f54eb', '2026-02-13 00:38:50.395930'), (1, 'PROJECT', '项目', '智报项目(包含要素定义和内容)', 'folder', '#1890ff', '2026-02-13 00:38:50.395930'), (2, 'ELEMENT', '要素', '项目要素定义', 'tag', '#13c2c2', '2026-02-13 00:38:50.395930'), (3, 'VALUE', '要素值', '要素的具体值', 'edit', '#eb2f96', '2026-02-13 00:38:50.395930'); -- edge_types (11 rows) INSERT INTO edge_types (id, type_code, type_name, from_node_type, to_node_type, description, created_at) VALUES (4, 'HAS_ATTACHMENT', '包含附件', 'PROJECT', 'ATTACHMENT', '项目有附件', '2026-02-13 00:38:50.395930'), (6, 'HAS_RULE', '包含规则', 'PROJECT', 'RULE', '项目有规则', '2026-02-13 00:38:50.395930'), (5, 'HAS_ENTITY', '包含实体', 'ATTACHMENT', 'ENTITY', '附件有实体', '2026-02-13 00:38:50.395930'), (1, 'HAS_ELEMENT', '包含要素', 'PROJECT', 'ELEMENT', '项目包含要素定义', '2026-02-13 00:38:50.395930'), (2, 'HAS_VALUE', '包含值', 'PROJECT', 'VALUE', '项目有要素值', '2026-02-13 00:38:50.395930'), (3, 'FOR_ELEMENT', '对应要素', 'VALUE', 'ELEMENT', '值对应的要素', '2026-02-13 00:38:50.395930'), (11, 'COPIED_FROM', '复制来源', 'PROJECT', 'PROJECT', '项目复制来源', '2026-02-13 00:38:50.395930'), (8, 'INPUT_FROM', '输入来源', 'RULE', 'ENTITY', '规则输入来源(实体)', '2026-02-13 00:38:50.395930'), (9, 'INPUT_FROM', '输入来源', 'RULE', 'ATTACHMENT', '规则输入来源(附件)', '2026-02-13 00:38:50.395930'), (10, 'INPUT_FROM', '输入来源', 'RULE', 'VALUE', '规则输入来源(其他值)', '2026-02-13 00:38:50.395930'); INSERT INTO edge_types (id, type_code, type_name, from_node_type, to_node_type, description, created_at) VALUES (7, 'FOR_ELEMENT', '针对要素', 'RULE', 'ELEMENT', '规则对应的要素', '2026-02-13 00:38:50.395930'); -- nodes (399 rows) INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (10, 'PROJECT', 'PRJ-2024-001', '成都院2024年复审报告', 'draft', 1, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (400, 'ATTACHMENT', 'ATT-001', '01-附件1 成都院核心要素评审情况记录表.docx', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (401, 'ATTACHMENT', 'ATT-002', '02-附件2 成都院现场评审分工表.zip', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (402, 'ATTACHMENT', 'ATT-003', '03-附件3 关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知.pdf', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (403, 'ATTACHMENT', 'ATT-004', '04-附件4 成都院材料真实性说明.png', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (404, 'ATTACHMENT', 'ATT-005', '05-附件5 成都院在建项目一览表.docx', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (405, 'ATTACHMENT', 'ATT-006', '06-附件6 成都院安全管理制度清单.docx', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (406, 'ATTACHMENT', 'ATT-007', '07-附件7 成都院现场评审末次会签到表.png', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (407, 'ATTACHMENT', 'ATT-008', '08-中国电建集团成都勘测设计工作方案.zip', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (408, 'ATTACHMENT', 'ATT-009', '09-附件8 复审问题建议表.docx', 'active', NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (600, 'RULE', 'PRJ-2024-001:basicInfo.projectCode', '项目编号-直接引用实体', 'active', 1, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (601, 'RULE', 'PRJ-2024-001:basicInfo.reviewObject', '评审对象-直接引用实体', 'active', 1, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (602, 'RULE', 'PRJ-2024-001:schedule.startDate', '评审开始日期-直接引用实体', 'active', 1, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (603, 'RULE', 'PRJ-2024-001:schedule.endDate', '评审结束日期-直接引用实体', 'active', 1, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (604, 'RULE', 'PRJ-2024-001:result.score', '评审得分-直接引用实体', 'active', 1, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (701, 'ELEMENT', 'basicInfo.projectCode', '项目编号', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (702, 'ELEMENT', 'basicInfo.requestLevel', '申请级别', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (703, 'ELEMENT', 'basicInfo.reviewObjectCertificateGetAt', '获证日期', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (704, 'ELEMENT', 'basicInfo.reviewObjectCertificate2GetAt', '通过评审日期', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (705, 'ELEMENT', 'basicInfo.applyAt', '申请日期', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (706, 'ELEMENT', 'project.reviewObject', '评审对象', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (707, 'ELEMENT', 'project.reviewObjectAlias', '评审对象简称', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (708, 'ELEMENT', 'project.resultScore', '评审得分', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (709, 'ELEMENT', 'project.resultLevel', '评审结论级别', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (710, 'ELEMENT', 'project.workStartAt', '评审开始日期', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (711, 'ELEMENT', 'project.workEndAt', '评审结束日期', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (712, 'ELEMENT', 'project.createdAt', '报告日期', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (713, 'ELEMENT', 'project.reviewObjectSummary', '评审对象概况', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (714, 'ELEMENT', 'project.reviewObjectDescription', '评审对象简介', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (715, 'ELEMENT', 'project.reviewPeriod', '评审期', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (716, 'ELEMENT', 'project.target', '目标', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (717, 'ELEMENT', 'project.duty', '职责', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (718, 'ELEMENT', 'project.fullParticipation', '全员参与', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (719, 'ELEMENT', 'project.safetyInvestment', '安全投入', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (720, 'ELEMENT', 'project.safetyCulture', '安全文化', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (721, 'ELEMENT', 'project.systematicManagement', '体系化管理', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (722, 'ELEMENT', 'project.employeeTraining', '人员教育培训', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (723, 'ELEMENT', 'project.assetManagement', '设备设施管理', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (724, 'ELEMENT', 'project.jobSafety', '作业安全', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (725, 'ELEMENT', 'project.positionQualified', '岗位达标', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (726, 'ELEMENT', 'project.partner', '相关方', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (727, 'ELEMENT', 'project.occupationalHealth', '职业健康', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (728, 'ELEMENT', 'project.riskAssessment', '风险辨识与评价', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (729, 'ELEMENT', 'project.majorHazardManagement', '重大危险源管理', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (730, 'ELEMENT', 'project.hazardInspection', '隐患排查', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (731, 'ELEMENT', 'project.changeManagement', '变更管理', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (732, 'ELEMENT', 'project.earlyWarning', '预测预警', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (733, 'ELEMENT', 'project.emergencyResponse', '应急救援', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (734, 'ELEMENT', 'project.incidentManagement', '事故管理', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (735, 'ELEMENT', 'project.continuousImprovement', '持续改进', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (736, 'ELEMENT', 'project.safetyStandardizationStatus', '标准化建设运行情况', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (737, 'ELEMENT', 'project.safetyHighlight', '安全生产管理亮点', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (738, 'ELEMENT', 'project.reviewObjectSelfAssessmentProcess', '自评过程', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (739, 'ELEMENT', 'project.moreWorkReference', '其他工作依据', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (740, 'ELEMENT', 'project.reviewRange', '复审范围', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (741, 'ELEMENT', 'project.workProcess', '复审工作过程', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (742, 'ELEMENT', 'project.closingMeetingAt', '末次会议时间', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (743, 'ELEMENT', '+SPSRRReviewProject', '现场复审项目', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (744, 'ELEMENT', '+SPSRRReviewer', '现场复审人员', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (745, 'ELEMENT', '+review_status', '现场复审情况', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (746, 'ELEMENT', '+target_responsibility', '目标职责', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (747, 'ELEMENT', '+institutionalized_management', '制度化管理', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (801, 'VALUE', 'PRJ-2024-001:basicInfo.projectCode', '项目编号值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (802, 'VALUE', 'PRJ-2024-001:basicInfo.requestLevel', '申请级别值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (803, 'VALUE', 'PRJ-2024-001:basicInfo.reviewObjectCertificateGetAt', '获证日期值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (804, 'VALUE', 'PRJ-2024-001:basicInfo.reviewObjectCertificate2GetAt', '通过评审日期值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (805, 'VALUE', 'PRJ-2024-001:basicInfo.applyAt', '申请日期值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (806, 'VALUE', 'PRJ-2024-001:project.reviewObject', '评审对象值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (807, 'VALUE', 'PRJ-2024-001:project.reviewObjectAlias', '评审对象简称值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (808, 'VALUE', 'PRJ-2024-001:project.resultScore', '评审得分值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (809, 'VALUE', 'PRJ-2024-001:project.resultLevel', '评审结论级别值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (810, 'VALUE', 'PRJ-2024-001:project.workStartAt', '评审开始日期值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (811, 'VALUE', 'PRJ-2024-001:project.workEndAt', '评审结束日期值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (812, 'VALUE', 'PRJ-2024-001:project.createdAt', '报告日期值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (813, 'VALUE', 'PRJ-2024-001:project.reviewObjectSummary', '评审对象概况值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (814, 'VALUE', 'PRJ-2024-001:project.reviewObjectDescription', '评审对象简介值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (815, 'VALUE', 'PRJ-2024-001:project.reviewPeriod', '评审期值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (816, 'VALUE', 'PRJ-2024-001:project.target', '目标值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (817, 'VALUE', 'PRJ-2024-001:project.duty', '职责值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (818, 'VALUE', 'PRJ-2024-001:project.fullParticipation', '全员参与值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (819, 'VALUE', 'PRJ-2024-001:project.safetyInvestment', '安全投入值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (820, 'VALUE', 'PRJ-2024-001:project.safetyCulture', '安全文化值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (821, 'VALUE', 'PRJ-2024-001:project.systematicManagement', '体系化管理值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (822, 'VALUE', 'PRJ-2024-001:project.employeeTraining', '人员教育培训值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (823, 'VALUE', 'PRJ-2024-001:project.assetManagement', '设备设施管理值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (824, 'VALUE', 'PRJ-2024-001:project.jobSafety', '作业安全值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (825, 'VALUE', 'PRJ-2024-001:project.positionQualified', '岗位达标值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (826, 'VALUE', 'PRJ-2024-001:project.partner', '相关方值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (827, 'VALUE', 'PRJ-2024-001:project.occupationalHealth', '职业健康值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (828, 'VALUE', 'PRJ-2024-001:project.riskAssessment', '风险辨识与评价值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (829, 'VALUE', 'PRJ-2024-001:project.majorHazardManagement', '重大危险源管理值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (830, 'VALUE', 'PRJ-2024-001:project.hazardInspection', '隐患排查值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (831, 'VALUE', 'PRJ-2024-001:project.changeManagement', '变更管理值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (832, 'VALUE', 'PRJ-2024-001:project.earlyWarning', '预测预警值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (833, 'VALUE', 'PRJ-2024-001:project.emergencyResponse', '应急救援值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (834, 'VALUE', 'PRJ-2024-001:project.incidentManagement', '事故管理值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (835, 'VALUE', 'PRJ-2024-001:project.continuousImprovement', '持续改进值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (836, 'VALUE', 'PRJ-2024-001:project.safetyStandardizationStatus', '标准化建设运行情况值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (837, 'VALUE', 'PRJ-2024-001:project.safetyHighlight', '安全生产管理亮点值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (838, 'VALUE', 'PRJ-2024-001:project.reviewObjectSelfAssessmentProcess', '自评过程值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (839, 'VALUE', 'PRJ-2024-001:project.moreWorkReference', '其他工作依据值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (840, 'VALUE', 'PRJ-2024-001:project.reviewRange', '复审范围值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (841, 'VALUE', 'PRJ-2024-001:project.workProcess', '复审工作过程值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (842, 'VALUE', 'PRJ-2024-001:project.closingMeetingAt', '末次会议时间值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (843, 'VALUE', 'PRJ-2024-001:+SPSRRReviewProject', '现场复审项目值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (844, 'VALUE', 'PRJ-2024-001:+SPSRRReviewer', '现场复审人员值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (845, 'VALUE', 'PRJ-2024-001:+review_status', '现场复审情况值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (846, 'VALUE', 'PRJ-2024-001:+target_responsibility', '目标职责值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (847, 'VALUE', 'PRJ-2024-001:+institutionalized_management', '制度化管理值', 'active', NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (848, 'ELEMENT', 'static.frag_1', '项目编号:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (849, 'ELEMENT', 'static.para_2', '电力安全生产标准化', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (850, 'ELEMENT', 'static.para_3', '复 审 报 告', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (851, 'ELEMENT', 'static.frag_4', '评审对象:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (852, 'ELEMENT', 'static.frag_5', '申请类别: 电力勘测设计企业 级别:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (853, 'ELEMENT', 'static.frag_6', '评审得分:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (854, 'ELEMENT', 'static.frag_7', '评审日期:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (855, 'ELEMENT', 'static.para_8', '湖北安源安全环保科技有限公司', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (856, 'ELEMENT', 'static.frag_9', '湖北安源安全环保科技有限公司是经中国电力建设企业协会批准的电...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (857, 'ELEMENT', 'static.frag_10', '委托,我公司承担', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (858, 'ELEMENT', 'static.frag_11', '安全生产标准化复审工作。在本次评审工作中,我公司郑重承诺:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (859, 'ELEMENT', 'static.para_12', '将客观、公正、独立的开展评审工作,严格按照《电力建设企业安全...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (860, 'ELEMENT', 'static.para_13', '如实反映被评审单位的安全生产标准化建设状况,不出具虚假或者严...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (861, 'ELEMENT', 'static.para_14', '保守被评审单位的技术秘密和商业秘密;', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (862, 'ELEMENT', 'static.para_15', '恪守职业准则,不发生其他违法、违规的行为;', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (863, 'ELEMENT', 'static.para_16', '自觉接受国家能源局及其派出机构、中国电力建设集团(股份)有限...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (864, 'ELEMENT', 'static.para_17', '法人代表:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (865, 'ELEMENT', 'static.para_18', '湖北安源安全环保科技有限公司(公章)', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (866, 'ELEMENT', 'static.para_19', '前 言', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (867, 'ELEMENT', 'static.frag_20', '顺利通过电力勘测设计企业一级安全生产标准化评审,于', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (868, 'ELEMENT', 'static.frag_21', '获得电力安全生产标准化一级企业证书。为落实《中国电力建设股份...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (869, 'ELEMENT', 'static.frag_22', '提出电力安全生产标准化复审现场评审申请,申请标准化复审级别为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (870, 'ELEMENT', 'static.frag_23', '依据《电力建设企业安全生产标准化评级程序及工作要求》(中电建...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (871, 'ELEMENT', 'static.frag_24', '提出电力安全生产标准化复审申请日期为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (872, 'ELEMENT', 'static.frag_25', ',因此,', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (873, 'ELEMENT', 'static.frag_26', '本次标准化达标评级评审期为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (874, 'ELEMENT', 'static.frag_27', '期间,湖北安源安全环保科技有限公司(以下简称“湖北安源公司”...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (875, 'ELEMENT', 'static.frag_28', '安全生产标准化复审评审组(以下简称“评审组”),分阶段对', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (876, 'ELEMENT', 'static.frag_29', '进行了安全生产标准化复审现场评审工作。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (877, 'ELEMENT', 'static.frag_30', '评审组在', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (878, 'ELEMENT', 'static.frag_31', '自查的基础上,对照《中国电力建设集团(股份)有限公司电力勘测...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (879, 'ELEMENT', 'static.frag_32', '安全生产标准化复审报告》(送审稿)。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (880, 'ELEMENT', 'static.frag_33', '本次安全生产标准化评审工作得到了股份公司、', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (881, 'ELEMENT', 'static.frag_34', '领导及有关人员的大力支持和密切配合,谨此表示衷心的感谢!', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (882, 'ELEMENT', 'static.para_35', '目 录', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (883, 'ELEMENT', 'static.para_36', '1 企业概述 1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (884, 'ELEMENT', 'static.para_37', '1.1 企业简介 1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (885, 'ELEMENT', 'static.para_38', '1.2 安全生产管理及绩效 1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (886, 'ELEMENT', 'static.para_39', '1.3 安全生产标准化建设和持续运行情况 2', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (887, 'ELEMENT', 'static.para_40', '1.4 安全生产管理亮点 3', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (888, 'ELEMENT', 'static.para_41', '2 企业自评概述 4', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (889, 'ELEMENT', 'static.para_42', '2.1 自评过程 4', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (890, 'ELEMENT', 'static.para_43', '2.2 自评结论 4', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (891, 'ELEMENT', 'static.para_44', '3 复审概况 5', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (892, 'ELEMENT', 'static.para_45', '3.1 工作依据 5', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (893, 'ELEMENT', 'static.para_46', '3.2 目的及原则 5', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (894, 'ELEMENT', 'static.para_47', '3.3 复审范围 6', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (895, 'ELEMENT', 'static.para_48', '3.4 复审方法 6', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (896, 'ELEMENT', 'static.para_49', '3.5 复审过程概述 7', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (897, 'ELEMENT', 'static.para_50', '4 现场复审情况 8', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (898, 'ELEMENT', 'static.para_51', '4.1 核心要求复审情况 8', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (899, 'ELEMENT', 'static.para_52', '4.2 复审结果 8', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (900, 'ELEMENT', 'static.para_53', '4.3 现场复审得分分析 9', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (901, 'ELEMENT', 'static.para_54', '5 现场复审发现的问题及整改 10', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (902, 'ELEMENT', 'static.para_55', '6 现场复审结论 11', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (903, 'ELEMENT', 'static.para_56', '7 附件 12', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (904, 'ELEMENT', 'static.para_57', '附件1 核心要素评审情况记录表 13', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (905, 'ELEMENT', 'static.para_58', '附件2 现场评审分工表 14', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (906, 'ELEMENT', 'static.para_59', '附件3 安全生产标准化复审实施方案 15', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (907, 'ELEMENT', 'static.para_60', '附件4 材料真实性说明 16', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (908, 'ELEMENT', 'static.para_61', '附件5 在建项目一览表 17', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (909, 'ELEMENT', 'static.para_62', '附件6 安全管理制度清单 18', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (910, 'ELEMENT', 'static.para_63', '附件7 现场评审末次会签到表 19', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (911, 'ELEMENT', 'static.para_64', '1 企业概述', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (912, 'ELEMENT', 'static.para_65', '1.1 企业简介', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (913, 'ELEMENT', 'static.frag_66', '组织机构如图1.1-1。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (914, 'ELEMENT', 'static.frag_67', '图1.1-1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (915, 'ELEMENT', 'static.frag_68', '组织机构图', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (916, 'ELEMENT', 'static.para_69', '1.2 安全生产管理及绩效', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (917, 'ELEMENT', 'static.para_70', '1.2.1 目标职责', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (918, 'ELEMENT', 'static.para_71', '1)目标', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (919, 'ELEMENT', 'static.para_72', '2)组织机构和职责', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (920, 'ELEMENT', 'static.para_73', '3)全员参与', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (921, 'ELEMENT', 'static.para_74', '4)安全生产投入', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (922, 'ELEMENT', 'static.para_75', '5)安全文化建设', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (923, 'ELEMENT', 'static.para_76', '1.2.2 制度化管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (924, 'ELEMENT', 'static.para_77', '1.2.3 教育培训', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (925, 'ELEMENT', 'static.para_78', '1)教育培训管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (926, 'ELEMENT', 'static.para_79', '2)人员教育培训', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (927, 'ELEMENT', 'static.para_80', '1.2.4 现场管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (928, 'ELEMENT', 'static.para_81', '1)设备设施管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (929, 'ELEMENT', 'static.para_82', '2)作业安全', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (930, 'ELEMENT', 'static.para_83', '3)岗位达标', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (931, 'ELEMENT', 'static.para_84', '4)相关方', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (932, 'ELEMENT', 'static.para_85', '5)职业健康', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (933, 'ELEMENT', 'static.para_86', '1.2.5 安全风险管控和隐患排查治理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (934, 'ELEMENT', 'static.para_87', '1)风险辨识与评价', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (935, 'ELEMENT', 'static.para_88', '2)重大危险源管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (936, 'ELEMENT', 'static.para_89', '3)隐患排查', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (937, 'ELEMENT', 'static.para_90', '4)变更管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (938, 'ELEMENT', 'static.para_91', '5)预测预警', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (939, 'ELEMENT', 'static.para_92', '1.2.6 应急救援', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (940, 'ELEMENT', 'static.para_93', '1.2.7 事故管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (941, 'ELEMENT', 'static.para_94', '1.2.8 持续改进', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (942, 'ELEMENT', 'static.para_95', '1.3 安全生产标准化建设和持续运行情况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (943, 'ELEMENT', 'static.frag_96', '获得国家能源局安全生产标准化一级企业达标证书,取得证书后,继...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (944, 'ELEMENT', 'static.frag_97', '获得电力安全生产标准化一级企业证书。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (945, 'ELEMENT', 'static.para_98', '1.4 安全生产管理亮点', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (946, 'ELEMENT', 'static.para_99', '2 企业自评概述', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (947, 'ELEMENT', 'static.para_100', '2.1 自评过程', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (948, 'ELEMENT', 'static.para_101', '2.2 自评结论', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (949, 'ELEMENT', 'static.frag_102', '成立安全生产标准化自评工作领导小组,依据《中国电力建设股份有...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (950, 'ELEMENT', 'static.frag_103', ',组建自评小组对公司安全生产标准化开展情况进行了检查。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (951, 'ELEMENT', 'static.frag_104', '安全生产标准化自评结论:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (952, 'ELEMENT', 'static.frag_105', '满足电力勘测设计企业安全生产标准化一级企业的条件和要求。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (953, 'ELEMENT', 'static.para_106', '3 复审概况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (954, 'ELEMENT', 'static.para_107', '3.1 工作依据', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (955, 'ELEMENT', 'static.para_108', '1)《关于推进电力安全生产标准化建设工作有关事项的通知》(国...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (956, 'ELEMENT', 'static.para_109', '2)《电力勘测设计企业安全生产标准化实施规范》(DLT 26...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (957, 'ELEMENT', 'static.para_110', '3)《关于印发<中国电力建设股份有限公司安全生产标准化建设管...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (958, 'ELEMENT', 'static.para_111', '4)《关于进一步加强安全生产标准化建设有关工作的通知》(中电...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (959, 'ELEMENT', 'static.para_112', '5)《电力勘测设计企业安全生产标准化评价标准(2020年版)...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (960, 'ELEMENT', 'static.para_113', '6)《中国电力建设集团(股份)有限公司2024年安全生产与职...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (961, 'ELEMENT', 'static.para_114', '3.2 目的及原则', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (962, 'ELEMENT', 'static.para_115', '1)坚持“安全第一、预防为主、综合治理”的方针,全面加强企业...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (963, 'ELEMENT', 'static.frag_116', '安全生产标准化体系运行现状是否符合一级企业要求进行复审。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (964, 'ELEMENT', 'static.frag_117', '3)本次达标评级评审依据《中国电力建设集团(股份)有限公司电...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (965, 'ELEMENT', 'static.frag_118', '自查评报告的基础上坚持政策性、科学性、公正性和针对性的原则,...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (966, 'ELEMENT', 'static.para_119', '3.3 复审范围', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (967, 'ELEMENT', 'static.frag_120', '1)本次评审范围包括:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (968, 'ELEMENT', 'static.frag_121', '2)评审期:本次评审期为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (969, 'ELEMENT', 'static.frag_122', '。现场评审期间,评审组', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (970, 'ELEMENT', 'static.frag_123', '分批次对', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (971, 'ELEMENT', 'static.frag_124', '安全管理情况及抽查的项目现场情况进行了评审。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (972, 'ELEMENT', 'static.para_125', '3.4 复审方法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (973, 'ELEMENT', 'static.para_126', '根据安全生产标准化达标评级工作的特点,本报告采用安全检查表法...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (974, 'ELEMENT', 'static.para_127', '1)安全检查表法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (975, 'ELEMENT', 'static.para_128', '安全检查表法是将工程、系统、作业活动分割成若干小的子系统,根...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (976, 'ELEMENT', 'static.para_129', '2)专家现场询问、观察法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (977, 'ELEMENT', 'static.para_130', '评审组派出了评审员赴现场检查,评审员在检查中坚持原则、实事求...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (978, 'ELEMENT', 'static.para_131', '3)雷达图分析法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (979, 'ELEMENT', 'static.para_132', '雷达图分析法是将评审对象的八个要素的指标情况用二维平面图形,...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (980, 'ELEMENT', 'static.para_133', '3.5 复审过程概述', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (981, 'ELEMENT', 'static.para_134', '3.5.1 现场复审项目选择', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (982, 'ELEMENT', 'static.para_135', '3.5.2 现场复审人员', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (983, 'ELEMENT', 'static.para_136', '3.5.3 现场复审工作过程', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (984, 'ELEMENT', 'static.para_137', '3)评审组专家分析会:评审组召开评审工作沟通会,就评审工作进...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (985, 'ELEMENT', 'static.frag_138', '4)末次会议:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (986, 'ELEMENT', 'static.frag_139', '本部第一会议室召开了末次会议,评审组成员,', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (987, 'ELEMENT', 'static.frag_140', '相关领导,党委/群团工作部、公司/董事会办公室、纪委/巡查工...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (988, 'ELEMENT', 'static.frag_141', '领导做了表态发言,并承诺下一步将重点落实整改。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (989, 'ELEMENT', 'static.para_142', '4 现场复审情况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (990, 'ELEMENT', 'static.para_143', '4.1 核心要求复审情况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (991, 'ELEMENT', 'static.para_144', '4.1.1 目标职责', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (992, 'ELEMENT', 'static.para_145', '4.1.2 制度化管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (993, 'VALUE', 'PRJ-2024-001:static.frag_1', '项目编号:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (994, 'VALUE', 'PRJ-2024-001:static.para_2', '电力安全生产标准化', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (995, 'VALUE', 'PRJ-2024-001:static.para_3', '复 审 报 告', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (996, 'VALUE', 'PRJ-2024-001:static.frag_4', '评审对象:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (997, 'VALUE', 'PRJ-2024-001:static.frag_5', '申请类别: 电力勘测设计企业 级别:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (998, 'VALUE', 'PRJ-2024-001:static.frag_6', '评审得分:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (999, 'VALUE', 'PRJ-2024-001:static.frag_7', '评审日期:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1000, 'VALUE', 'PRJ-2024-001:static.para_8', '湖北安源安全环保科技有限公司', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1001, 'VALUE', 'PRJ-2024-001:static.frag_9', '湖北安源安全环保科技有限公司是经中国电力建设企业协会批准的电...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1002, 'VALUE', 'PRJ-2024-001:static.frag_10', '委托,我公司承担', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1003, 'VALUE', 'PRJ-2024-001:static.frag_11', '安全生产标准化复审工作。在本次评审工作中,我公司郑重承诺:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1004, 'VALUE', 'PRJ-2024-001:static.para_12', '将客观、公正、独立的开展评审工作,严格按照《电力建设企业安全...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1005, 'VALUE', 'PRJ-2024-001:static.para_13', '如实反映被评审单位的安全生产标准化建设状况,不出具虚假或者严...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1006, 'VALUE', 'PRJ-2024-001:static.para_14', '保守被评审单位的技术秘密和商业秘密;', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1007, 'VALUE', 'PRJ-2024-001:static.para_15', '恪守职业准则,不发生其他违法、违规的行为;', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1008, 'VALUE', 'PRJ-2024-001:static.para_16', '自觉接受国家能源局及其派出机构、中国电力建设集团(股份)有限...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1009, 'VALUE', 'PRJ-2024-001:static.para_17', '法人代表:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1010, 'VALUE', 'PRJ-2024-001:static.para_18', '湖北安源安全环保科技有限公司(公章)', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1011, 'VALUE', 'PRJ-2024-001:static.para_19', '前 言', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1012, 'VALUE', 'PRJ-2024-001:static.frag_20', '顺利通过电力勘测设计企业一级安全生产标准化评审,于', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1013, 'VALUE', 'PRJ-2024-001:static.frag_21', '获得电力安全生产标准化一级企业证书。为落实《中国电力建设股份...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1014, 'VALUE', 'PRJ-2024-001:static.frag_22', '提出电力安全生产标准化复审现场评审申请,申请标准化复审级别为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1015, 'VALUE', 'PRJ-2024-001:static.frag_23', '依据《电力建设企业安全生产标准化评级程序及工作要求》(中电建...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1016, 'VALUE', 'PRJ-2024-001:static.frag_24', '提出电力安全生产标准化复审申请日期为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1017, 'VALUE', 'PRJ-2024-001:static.frag_25', ',因此,', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1018, 'VALUE', 'PRJ-2024-001:static.frag_26', '本次标准化达标评级评审期为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1019, 'VALUE', 'PRJ-2024-001:static.frag_27', '期间,湖北安源安全环保科技有限公司(以下简称“湖北安源公司”...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1020, 'VALUE', 'PRJ-2024-001:static.frag_28', '安全生产标准化复审评审组(以下简称“评审组”),分阶段对', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1021, 'VALUE', 'PRJ-2024-001:static.frag_29', '进行了安全生产标准化复审现场评审工作。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1022, 'VALUE', 'PRJ-2024-001:static.frag_30', '评审组在', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1023, 'VALUE', 'PRJ-2024-001:static.frag_31', '自查的基础上,对照《中国电力建设集团(股份)有限公司电力勘测...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1024, 'VALUE', 'PRJ-2024-001:static.frag_32', '安全生产标准化复审报告》(送审稿)。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1025, 'VALUE', 'PRJ-2024-001:static.frag_33', '本次安全生产标准化评审工作得到了股份公司、', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1026, 'VALUE', 'PRJ-2024-001:static.frag_34', '领导及有关人员的大力支持和密切配合,谨此表示衷心的感谢!', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1027, 'VALUE', 'PRJ-2024-001:static.para_35', '目 录', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1028, 'VALUE', 'PRJ-2024-001:static.para_36', '1 企业概述 1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1029, 'VALUE', 'PRJ-2024-001:static.para_37', '1.1 企业简介 1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1030, 'VALUE', 'PRJ-2024-001:static.para_38', '1.2 安全生产管理及绩效 1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1031, 'VALUE', 'PRJ-2024-001:static.para_39', '1.3 安全生产标准化建设和持续运行情况 2', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1032, 'VALUE', 'PRJ-2024-001:static.para_40', '1.4 安全生产管理亮点 3', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1033, 'VALUE', 'PRJ-2024-001:static.para_41', '2 企业自评概述 4', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1034, 'VALUE', 'PRJ-2024-001:static.para_42', '2.1 自评过程 4', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1035, 'VALUE', 'PRJ-2024-001:static.para_43', '2.2 自评结论 4', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1036, 'VALUE', 'PRJ-2024-001:static.para_44', '3 复审概况 5', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1037, 'VALUE', 'PRJ-2024-001:static.para_45', '3.1 工作依据 5', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1038, 'VALUE', 'PRJ-2024-001:static.para_46', '3.2 目的及原则 5', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1039, 'VALUE', 'PRJ-2024-001:static.para_47', '3.3 复审范围 6', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1040, 'VALUE', 'PRJ-2024-001:static.para_48', '3.4 复审方法 6', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1041, 'VALUE', 'PRJ-2024-001:static.para_49', '3.5 复审过程概述 7', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1042, 'VALUE', 'PRJ-2024-001:static.para_50', '4 现场复审情况 8', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1043, 'VALUE', 'PRJ-2024-001:static.para_51', '4.1 核心要求复审情况 8', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1044, 'VALUE', 'PRJ-2024-001:static.para_52', '4.2 复审结果 8', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1045, 'VALUE', 'PRJ-2024-001:static.para_53', '4.3 现场复审得分分析 9', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1046, 'VALUE', 'PRJ-2024-001:static.para_54', '5 现场复审发现的问题及整改 10', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1047, 'VALUE', 'PRJ-2024-001:static.para_55', '6 现场复审结论 11', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1048, 'VALUE', 'PRJ-2024-001:static.para_56', '7 附件 12', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1049, 'VALUE', 'PRJ-2024-001:static.para_57', '附件1 核心要素评审情况记录表 13', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1050, 'VALUE', 'PRJ-2024-001:static.para_58', '附件2 现场评审分工表 14', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1051, 'VALUE', 'PRJ-2024-001:static.para_59', '附件3 安全生产标准化复审实施方案 15', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1052, 'VALUE', 'PRJ-2024-001:static.para_60', '附件4 材料真实性说明 16', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1053, 'VALUE', 'PRJ-2024-001:static.para_61', '附件5 在建项目一览表 17', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1054, 'VALUE', 'PRJ-2024-001:static.para_62', '附件6 安全管理制度清单 18', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1055, 'VALUE', 'PRJ-2024-001:static.para_63', '附件7 现场评审末次会签到表 19', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1056, 'VALUE', 'PRJ-2024-001:static.para_64', '1 企业概述', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1057, 'VALUE', 'PRJ-2024-001:static.para_65', '1.1 企业简介', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1058, 'VALUE', 'PRJ-2024-001:static.frag_66', '组织机构如图1.1-1。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1059, 'VALUE', 'PRJ-2024-001:static.frag_67', '图1.1-1', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1060, 'VALUE', 'PRJ-2024-001:static.frag_68', '组织机构图', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1061, 'VALUE', 'PRJ-2024-001:static.para_69', '1.2 安全生产管理及绩效', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1062, 'VALUE', 'PRJ-2024-001:static.para_70', '1.2.1 目标职责', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1063, 'VALUE', 'PRJ-2024-001:static.para_71', '1)目标', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1064, 'VALUE', 'PRJ-2024-001:static.para_72', '2)组织机构和职责', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1065, 'VALUE', 'PRJ-2024-001:static.para_73', '3)全员参与', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1066, 'VALUE', 'PRJ-2024-001:static.para_74', '4)安全生产投入', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1067, 'VALUE', 'PRJ-2024-001:static.para_75', '5)安全文化建设', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1068, 'VALUE', 'PRJ-2024-001:static.para_76', '1.2.2 制度化管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1069, 'VALUE', 'PRJ-2024-001:static.para_77', '1.2.3 教育培训', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1070, 'VALUE', 'PRJ-2024-001:static.para_78', '1)教育培训管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1071, 'VALUE', 'PRJ-2024-001:static.para_79', '2)人员教育培训', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1072, 'VALUE', 'PRJ-2024-001:static.para_80', '1.2.4 现场管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1073, 'VALUE', 'PRJ-2024-001:static.para_81', '1)设备设施管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1074, 'VALUE', 'PRJ-2024-001:static.para_82', '2)作业安全', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1075, 'VALUE', 'PRJ-2024-001:static.para_83', '3)岗位达标', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1076, 'VALUE', 'PRJ-2024-001:static.para_84', '4)相关方', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1077, 'VALUE', 'PRJ-2024-001:static.para_85', '5)职业健康', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1078, 'VALUE', 'PRJ-2024-001:static.para_86', '1.2.5 安全风险管控和隐患排查治理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1079, 'VALUE', 'PRJ-2024-001:static.para_87', '1)风险辨识与评价', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1080, 'VALUE', 'PRJ-2024-001:static.para_88', '2)重大危险源管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1081, 'VALUE', 'PRJ-2024-001:static.para_89', '3)隐患排查', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1082, 'VALUE', 'PRJ-2024-001:static.para_90', '4)变更管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1083, 'VALUE', 'PRJ-2024-001:static.para_91', '5)预测预警', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1084, 'VALUE', 'PRJ-2024-001:static.para_92', '1.2.6 应急救援', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1085, 'VALUE', 'PRJ-2024-001:static.para_93', '1.2.7 事故管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1086, 'VALUE', 'PRJ-2024-001:static.para_94', '1.2.8 持续改进', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1087, 'VALUE', 'PRJ-2024-001:static.para_95', '1.3 安全生产标准化建设和持续运行情况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1088, 'VALUE', 'PRJ-2024-001:static.frag_96', '获得国家能源局安全生产标准化一级企业达标证书,取得证书后,继...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1089, 'VALUE', 'PRJ-2024-001:static.frag_97', '获得电力安全生产标准化一级企业证书。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1090, 'VALUE', 'PRJ-2024-001:static.para_98', '1.4 安全生产管理亮点', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1091, 'VALUE', 'PRJ-2024-001:static.para_99', '2 企业自评概述', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1092, 'VALUE', 'PRJ-2024-001:static.para_100', '2.1 自评过程', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1093, 'VALUE', 'PRJ-2024-001:static.para_101', '2.2 自评结论', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1094, 'VALUE', 'PRJ-2024-001:static.frag_102', '成立安全生产标准化自评工作领导小组,依据《中国电力建设股份有...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1095, 'VALUE', 'PRJ-2024-001:static.frag_103', ',组建自评小组对公司安全生产标准化开展情况进行了检查。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1096, 'VALUE', 'PRJ-2024-001:static.frag_104', '安全生产标准化自评结论:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1097, 'VALUE', 'PRJ-2024-001:static.frag_105', '满足电力勘测设计企业安全生产标准化一级企业的条件和要求。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1098, 'VALUE', 'PRJ-2024-001:static.para_106', '3 复审概况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1099, 'VALUE', 'PRJ-2024-001:static.para_107', '3.1 工作依据', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1100, 'VALUE', 'PRJ-2024-001:static.para_108', '1)《关于推进电力安全生产标准化建设工作有关事项的通知》(国...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1101, 'VALUE', 'PRJ-2024-001:static.para_109', '2)《电力勘测设计企业安全生产标准化实施规范》(DLT 26...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1102, 'VALUE', 'PRJ-2024-001:static.para_110', '3)《关于印发<中国电力建设股份有限公司安全生产标准化建设管...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1103, 'VALUE', 'PRJ-2024-001:static.para_111', '4)《关于进一步加强安全生产标准化建设有关工作的通知》(中电...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1104, 'VALUE', 'PRJ-2024-001:static.para_112', '5)《电力勘测设计企业安全生产标准化评价标准(2020年版)...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1105, 'VALUE', 'PRJ-2024-001:static.para_113', '6)《中国电力建设集团(股份)有限公司2024年安全生产与职...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1106, 'VALUE', 'PRJ-2024-001:static.para_114', '3.2 目的及原则', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1107, 'VALUE', 'PRJ-2024-001:static.para_115', '1)坚持“安全第一、预防为主、综合治理”的方针,全面加强企业...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1108, 'VALUE', 'PRJ-2024-001:static.frag_116', '安全生产标准化体系运行现状是否符合一级企业要求进行复审。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1109, 'VALUE', 'PRJ-2024-001:static.frag_117', '3)本次达标评级评审依据《中国电力建设集团(股份)有限公司电...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1110, 'VALUE', 'PRJ-2024-001:static.frag_118', '自查评报告的基础上坚持政策性、科学性、公正性和针对性的原则,...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1111, 'VALUE', 'PRJ-2024-001:static.para_119', '3.3 复审范围', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1112, 'VALUE', 'PRJ-2024-001:static.frag_120', '1)本次评审范围包括:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1113, 'VALUE', 'PRJ-2024-001:static.frag_121', '2)评审期:本次评审期为', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1114, 'VALUE', 'PRJ-2024-001:static.frag_122', '。现场评审期间,评审组', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1115, 'VALUE', 'PRJ-2024-001:static.frag_123', '分批次对', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1116, 'VALUE', 'PRJ-2024-001:static.frag_124', '安全管理情况及抽查的项目现场情况进行了评审。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1117, 'VALUE', 'PRJ-2024-001:static.para_125', '3.4 复审方法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1118, 'VALUE', 'PRJ-2024-001:static.para_126', '根据安全生产标准化达标评级工作的特点,本报告采用安全检查表法...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1119, 'VALUE', 'PRJ-2024-001:static.para_127', '1)安全检查表法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1120, 'VALUE', 'PRJ-2024-001:static.para_128', '安全检查表法是将工程、系统、作业活动分割成若干小的子系统,根...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1121, 'VALUE', 'PRJ-2024-001:static.para_129', '2)专家现场询问、观察法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1122, 'VALUE', 'PRJ-2024-001:static.para_130', '评审组派出了评审员赴现场检查,评审员在检查中坚持原则、实事求...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1123, 'VALUE', 'PRJ-2024-001:static.para_131', '3)雷达图分析法', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1124, 'VALUE', 'PRJ-2024-001:static.para_132', '雷达图分析法是将评审对象的八个要素的指标情况用二维平面图形,...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1125, 'VALUE', 'PRJ-2024-001:static.para_133', '3.5 复审过程概述', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1126, 'VALUE', 'PRJ-2024-001:static.para_134', '3.5.1 现场复审项目选择', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1127, 'VALUE', 'PRJ-2024-001:static.para_135', '3.5.2 现场复审人员', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1128, 'VALUE', 'PRJ-2024-001:static.para_136', '3.5.3 现场复审工作过程', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO nodes (id, node_type, node_key, name, status, created_by, created_at, updated_at) VALUES (1129, 'VALUE', 'PRJ-2024-001:static.para_137', '3)评审组专家分析会:评审组召开评审工作沟通会,就评审工作进...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1130, 'VALUE', 'PRJ-2024-001:static.frag_138', '4)末次会议:', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1131, 'VALUE', 'PRJ-2024-001:static.frag_139', '本部第一会议室召开了末次会议,评审组成员,', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1132, 'VALUE', 'PRJ-2024-001:static.frag_140', '相关领导,党委/群团工作部、公司/董事会办公室、纪委/巡查工...', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1133, 'VALUE', 'PRJ-2024-001:static.frag_141', '领导做了表态发言,并承诺下一步将重点落实整改。', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1134, 'VALUE', 'PRJ-2024-001:static.para_142', '4 现场复审情况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1135, 'VALUE', 'PRJ-2024-001:static.para_143', '4.1 核心要求复审情况', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1136, 'VALUE', 'PRJ-2024-001:static.para_144', '4.1.1 目标职责', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (1137, 'VALUE', 'PRJ-2024-001:static.para_145', '4.1.2 制度化管理', 'active', NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); -- edges (398 rows) INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (34, 'HAS_RULE', 10, 600, 0, '2026-02-13 00:38:50.395930'), (35, 'HAS_RULE', 10, 601, 0, '2026-02-13 00:38:50.395930'), (36, 'HAS_RULE', 10, 602, 0, '2026-02-13 00:38:50.395930'), (37, 'HAS_RULE', 10, 603, 0, '2026-02-13 00:38:50.395930'), (38, 'HAS_RULE', 10, 604, 0, '2026-02-13 00:38:50.395930'), (2002, 'HAS_ELEMENT', 10, 701, 0, '2026-02-13 02:02:16.541961'), (2003, 'HAS_ELEMENT', 10, 702, 0, '2026-02-13 02:02:16.541961'), (2004, 'HAS_ELEMENT', 10, 703, 0, '2026-02-13 02:02:16.541961'), (2005, 'HAS_ELEMENT', 10, 704, 0, '2026-02-13 02:02:16.541961'), (2006, 'HAS_ELEMENT', 10, 705, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2007, 'HAS_ELEMENT', 10, 706, 0, '2026-02-13 02:02:16.541961'), (2008, 'HAS_ELEMENT', 10, 707, 0, '2026-02-13 02:02:16.541961'), (2009, 'HAS_ELEMENT', 10, 708, 0, '2026-02-13 02:02:16.541961'), (2010, 'HAS_ELEMENT', 10, 709, 0, '2026-02-13 02:02:16.541961'), (2011, 'HAS_ELEMENT', 10, 710, 0, '2026-02-13 02:02:16.541961'), (2012, 'HAS_ELEMENT', 10, 711, 0, '2026-02-13 02:02:16.541961'), (2013, 'HAS_ELEMENT', 10, 712, 0, '2026-02-13 02:02:16.541961'), (2014, 'HAS_ELEMENT', 10, 713, 0, '2026-02-13 02:02:16.541961'), (2015, 'HAS_ELEMENT', 10, 714, 0, '2026-02-13 02:02:16.541961'), (2016, 'HAS_ELEMENT', 10, 715, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2017, 'HAS_ELEMENT', 10, 716, 0, '2026-02-13 02:02:16.541961'), (2018, 'HAS_ELEMENT', 10, 717, 0, '2026-02-13 02:02:16.541961'), (2019, 'HAS_ELEMENT', 10, 718, 0, '2026-02-13 02:02:16.541961'), (2020, 'HAS_ELEMENT', 10, 719, 0, '2026-02-13 02:02:16.541961'), (2021, 'HAS_ELEMENT', 10, 720, 0, '2026-02-13 02:02:16.541961'), (2022, 'HAS_ELEMENT', 10, 721, 0, '2026-02-13 02:02:16.541961'), (2023, 'HAS_ELEMENT', 10, 722, 0, '2026-02-13 02:02:16.541961'), (2024, 'HAS_ELEMENT', 10, 723, 0, '2026-02-13 02:02:16.541961'), (2025, 'HAS_ELEMENT', 10, 724, 0, '2026-02-13 02:02:16.541961'), (2026, 'HAS_ELEMENT', 10, 725, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2027, 'HAS_ELEMENT', 10, 726, 0, '2026-02-13 02:02:16.541961'), (2028, 'HAS_ELEMENT', 10, 727, 0, '2026-02-13 02:02:16.541961'), (2029, 'HAS_ELEMENT', 10, 728, 0, '2026-02-13 02:02:16.541961'), (2030, 'HAS_ELEMENT', 10, 729, 0, '2026-02-13 02:02:16.541961'), (2031, 'HAS_ELEMENT', 10, 730, 0, '2026-02-13 02:02:16.541961'), (2032, 'HAS_ELEMENT', 10, 731, 0, '2026-02-13 02:02:16.541961'), (2033, 'HAS_ELEMENT', 10, 732, 0, '2026-02-13 02:02:16.541961'), (2034, 'HAS_ELEMENT', 10, 733, 0, '2026-02-13 02:02:16.541961'), (2035, 'HAS_ELEMENT', 10, 734, 0, '2026-02-13 02:02:16.541961'), (2036, 'HAS_ELEMENT', 10, 735, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2037, 'HAS_ELEMENT', 10, 736, 0, '2026-02-13 02:02:16.541961'), (2038, 'HAS_ELEMENT', 10, 737, 0, '2026-02-13 02:02:16.541961'), (2039, 'HAS_ELEMENT', 10, 738, 0, '2026-02-13 02:02:16.541961'), (2040, 'HAS_ELEMENT', 10, 739, 0, '2026-02-13 02:02:16.541961'), (2041, 'HAS_ELEMENT', 10, 740, 0, '2026-02-13 02:02:16.541961'), (2042, 'HAS_ELEMENT', 10, 741, 0, '2026-02-13 02:02:16.541961'), (2043, 'HAS_ELEMENT', 10, 742, 0, '2026-02-13 02:02:16.541961'), (2044, 'HAS_ELEMENT', 10, 743, 0, '2026-02-13 02:02:16.541961'), (2045, 'HAS_ELEMENT', 10, 744, 0, '2026-02-13 02:02:16.541961'), (2046, 'HAS_ELEMENT', 10, 745, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2047, 'HAS_ELEMENT', 10, 746, 0, '2026-02-13 02:02:16.541961'), (2048, 'HAS_ELEMENT', 10, 747, 0, '2026-02-13 02:02:16.541961'), (2049, 'HAS_VALUE', 10, 801, 0, '2026-02-13 02:02:16.541961'), (2050, 'HAS_VALUE', 10, 802, 0, '2026-02-13 02:02:16.541961'), (2051, 'HAS_VALUE', 10, 803, 0, '2026-02-13 02:02:16.541961'), (2052, 'HAS_VALUE', 10, 804, 0, '2026-02-13 02:02:16.541961'), (2053, 'HAS_VALUE', 10, 805, 0, '2026-02-13 02:02:16.541961'), (2054, 'HAS_VALUE', 10, 806, 0, '2026-02-13 02:02:16.541961'), (2055, 'HAS_VALUE', 10, 807, 0, '2026-02-13 02:02:16.541961'), (2056, 'HAS_VALUE', 10, 808, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2057, 'HAS_VALUE', 10, 809, 0, '2026-02-13 02:02:16.541961'), (2058, 'HAS_VALUE', 10, 810, 0, '2026-02-13 02:02:16.541961'), (2059, 'HAS_VALUE', 10, 811, 0, '2026-02-13 02:02:16.541961'), (2060, 'HAS_VALUE', 10, 812, 0, '2026-02-13 02:02:16.541961'), (2061, 'HAS_VALUE', 10, 813, 0, '2026-02-13 02:02:16.541961'), (2062, 'HAS_VALUE', 10, 814, 0, '2026-02-13 02:02:16.541961'), (2063, 'HAS_VALUE', 10, 815, 0, '2026-02-13 02:02:16.541961'), (2064, 'HAS_VALUE', 10, 816, 0, '2026-02-13 02:02:16.541961'), (2065, 'HAS_VALUE', 10, 817, 0, '2026-02-13 02:02:16.541961'), (2066, 'HAS_VALUE', 10, 818, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2067, 'HAS_VALUE', 10, 819, 0, '2026-02-13 02:02:16.541961'), (2068, 'HAS_VALUE', 10, 820, 0, '2026-02-13 02:02:16.541961'), (2069, 'HAS_VALUE', 10, 821, 0, '2026-02-13 02:02:16.541961'), (2070, 'HAS_VALUE', 10, 822, 0, '2026-02-13 02:02:16.541961'), (2071, 'HAS_VALUE', 10, 823, 0, '2026-02-13 02:02:16.541961'), (2072, 'HAS_VALUE', 10, 824, 0, '2026-02-13 02:02:16.541961'), (2073, 'HAS_VALUE', 10, 825, 0, '2026-02-13 02:02:16.541961'), (2074, 'HAS_VALUE', 10, 826, 0, '2026-02-13 02:02:16.541961'), (2075, 'HAS_VALUE', 10, 827, 0, '2026-02-13 02:02:16.541961'), (2076, 'HAS_VALUE', 10, 828, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2077, 'HAS_VALUE', 10, 829, 0, '2026-02-13 02:02:16.541961'), (2078, 'HAS_VALUE', 10, 830, 0, '2026-02-13 02:02:16.541961'), (2079, 'HAS_VALUE', 10, 831, 0, '2026-02-13 02:02:16.541961'), (2080, 'HAS_VALUE', 10, 832, 0, '2026-02-13 02:02:16.541961'), (2081, 'HAS_VALUE', 10, 833, 0, '2026-02-13 02:02:16.541961'), (2082, 'HAS_VALUE', 10, 834, 0, '2026-02-13 02:02:16.541961'), (2083, 'HAS_VALUE', 10, 835, 0, '2026-02-13 02:02:16.541961'), (2084, 'HAS_VALUE', 10, 836, 0, '2026-02-13 02:02:16.541961'), (2085, 'HAS_VALUE', 10, 837, 0, '2026-02-13 02:02:16.541961'), (2086, 'HAS_VALUE', 10, 838, 0, '2026-02-13 02:02:16.541961'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2087, 'HAS_VALUE', 10, 839, 0, '2026-02-13 02:02:16.541961'), (2088, 'HAS_VALUE', 10, 840, 0, '2026-02-13 02:02:16.541961'), (2089, 'HAS_VALUE', 10, 841, 0, '2026-02-13 02:02:16.541961'), (2090, 'HAS_VALUE', 10, 842, 0, '2026-02-13 02:02:16.541961'), (2091, 'HAS_VALUE', 10, 843, 0, '2026-02-13 02:02:16.541961'), (2092, 'HAS_VALUE', 10, 844, 0, '2026-02-13 02:02:16.541961'), (2093, 'HAS_VALUE', 10, 845, 0, '2026-02-13 02:02:16.541961'), (2094, 'HAS_VALUE', 10, 846, 0, '2026-02-13 02:02:16.541961'), (2095, 'HAS_VALUE', 10, 847, 0, '2026-02-13 02:02:16.541961'), (2096, 'HAS_ELEMENT', 10, 848, 100, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2097, 'HAS_VALUE', 10, 993, 100, '2026-02-13 10:34:15.327467'), (2098, 'HAS_ELEMENT', 10, 849, 101, '2026-02-13 10:34:15.327467'), (2099, 'HAS_VALUE', 10, 994, 101, '2026-02-13 10:34:15.327467'), (2100, 'HAS_ELEMENT', 10, 850, 102, '2026-02-13 10:34:15.327467'), (2101, 'HAS_VALUE', 10, 995, 102, '2026-02-13 10:34:15.327467'), (2102, 'HAS_ELEMENT', 10, 851, 103, '2026-02-13 10:34:15.327467'), (2103, 'HAS_VALUE', 10, 996, 103, '2026-02-13 10:34:15.327467'), (2104, 'HAS_ELEMENT', 10, 852, 104, '2026-02-13 10:34:15.327467'), (2105, 'HAS_VALUE', 10, 997, 104, '2026-02-13 10:34:15.327467'), (2106, 'HAS_ELEMENT', 10, 853, 105, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2107, 'HAS_VALUE', 10, 998, 105, '2026-02-13 10:34:15.327467'), (2108, 'HAS_ELEMENT', 10, 854, 106, '2026-02-13 10:34:15.327467'), (2109, 'HAS_VALUE', 10, 999, 106, '2026-02-13 10:34:15.327467'), (2110, 'HAS_ELEMENT', 10, 855, 107, '2026-02-13 10:34:15.327467'), (2111, 'HAS_VALUE', 10, 1000, 107, '2026-02-13 10:34:15.327467'), (2112, 'HAS_ELEMENT', 10, 856, 108, '2026-02-13 10:34:15.327467'), (2113, 'HAS_VALUE', 10, 1001, 108, '2026-02-13 10:34:15.327467'), (2114, 'HAS_ELEMENT', 10, 857, 109, '2026-02-13 10:34:15.327467'), (2115, 'HAS_VALUE', 10, 1002, 109, '2026-02-13 10:34:15.327467'), (2116, 'HAS_ELEMENT', 10, 858, 110, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2117, 'HAS_VALUE', 10, 1003, 110, '2026-02-13 10:34:15.327467'), (2118, 'HAS_ELEMENT', 10, 859, 111, '2026-02-13 10:34:15.327467'), (2119, 'HAS_VALUE', 10, 1004, 111, '2026-02-13 10:34:15.327467'), (2120, 'HAS_ELEMENT', 10, 860, 112, '2026-02-13 10:34:15.327467'), (2121, 'HAS_VALUE', 10, 1005, 112, '2026-02-13 10:34:15.327467'), (2122, 'HAS_ELEMENT', 10, 861, 113, '2026-02-13 10:34:15.327467'), (2123, 'HAS_VALUE', 10, 1006, 113, '2026-02-13 10:34:15.327467'), (2124, 'HAS_ELEMENT', 10, 862, 114, '2026-02-13 10:34:15.327467'), (2125, 'HAS_VALUE', 10, 1007, 114, '2026-02-13 10:34:15.327467'), (2126, 'HAS_ELEMENT', 10, 863, 115, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2127, 'HAS_VALUE', 10, 1008, 115, '2026-02-13 10:34:15.327467'), (2128, 'HAS_ELEMENT', 10, 864, 116, '2026-02-13 10:34:15.327467'), (2129, 'HAS_VALUE', 10, 1009, 116, '2026-02-13 10:34:15.327467'), (2130, 'HAS_ELEMENT', 10, 865, 117, '2026-02-13 10:34:15.327467'), (2131, 'HAS_VALUE', 10, 1010, 117, '2026-02-13 10:34:15.327467'), (2132, 'HAS_ELEMENT', 10, 866, 118, '2026-02-13 10:34:15.327467'), (2133, 'HAS_VALUE', 10, 1011, 118, '2026-02-13 10:34:15.327467'), (2134, 'HAS_ELEMENT', 10, 867, 119, '2026-02-13 10:34:15.327467'), (2135, 'HAS_VALUE', 10, 1012, 119, '2026-02-13 10:34:15.327467'), (2136, 'HAS_ELEMENT', 10, 868, 120, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2137, 'HAS_VALUE', 10, 1013, 120, '2026-02-13 10:34:15.327467'), (2138, 'HAS_ELEMENT', 10, 869, 121, '2026-02-13 10:34:15.327467'), (2139, 'HAS_VALUE', 10, 1014, 121, '2026-02-13 10:34:15.327467'), (2140, 'HAS_ELEMENT', 10, 870, 122, '2026-02-13 10:34:15.327467'), (2141, 'HAS_VALUE', 10, 1015, 122, '2026-02-13 10:34:15.327467'), (2142, 'HAS_ELEMENT', 10, 871, 123, '2026-02-13 10:34:15.327467'), (2143, 'HAS_VALUE', 10, 1016, 123, '2026-02-13 10:34:15.327467'), (2144, 'HAS_ELEMENT', 10, 872, 124, '2026-02-13 10:34:15.327467'), (2145, 'HAS_VALUE', 10, 1017, 124, '2026-02-13 10:34:15.327467'), (2146, 'HAS_ELEMENT', 10, 873, 125, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2147, 'HAS_VALUE', 10, 1018, 125, '2026-02-13 10:34:15.327467'), (2148, 'HAS_ELEMENT', 10, 874, 126, '2026-02-13 10:34:15.327467'), (2149, 'HAS_VALUE', 10, 1019, 126, '2026-02-13 10:34:15.327467'), (2150, 'HAS_ELEMENT', 10, 875, 127, '2026-02-13 10:34:15.327467'), (2151, 'HAS_VALUE', 10, 1020, 127, '2026-02-13 10:34:15.327467'), (2152, 'HAS_ELEMENT', 10, 876, 128, '2026-02-13 10:34:15.327467'), (2153, 'HAS_VALUE', 10, 1021, 128, '2026-02-13 10:34:15.327467'), (2154, 'HAS_ELEMENT', 10, 877, 129, '2026-02-13 10:34:15.327467'), (2155, 'HAS_VALUE', 10, 1022, 129, '2026-02-13 10:34:15.327467'), (2156, 'HAS_ELEMENT', 10, 878, 130, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2157, 'HAS_VALUE', 10, 1023, 130, '2026-02-13 10:34:15.327467'), (2158, 'HAS_ELEMENT', 10, 879, 131, '2026-02-13 10:34:15.327467'), (2159, 'HAS_VALUE', 10, 1024, 131, '2026-02-13 10:34:15.327467'), (2160, 'HAS_ELEMENT', 10, 880, 132, '2026-02-13 10:34:15.327467'), (2161, 'HAS_VALUE', 10, 1025, 132, '2026-02-13 10:34:15.327467'), (2162, 'HAS_ELEMENT', 10, 881, 133, '2026-02-13 10:34:15.327467'), (2163, 'HAS_VALUE', 10, 1026, 133, '2026-02-13 10:34:15.327467'), (2164, 'HAS_ELEMENT', 10, 882, 134, '2026-02-13 10:34:15.327467'), (2165, 'HAS_VALUE', 10, 1027, 134, '2026-02-13 10:34:15.327467'), (2166, 'HAS_ELEMENT', 10, 883, 135, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2167, 'HAS_VALUE', 10, 1028, 135, '2026-02-13 10:34:15.327467'), (2168, 'HAS_ELEMENT', 10, 884, 136, '2026-02-13 10:34:15.327467'), (2169, 'HAS_VALUE', 10, 1029, 136, '2026-02-13 10:34:15.327467'), (2170, 'HAS_ELEMENT', 10, 885, 137, '2026-02-13 10:34:15.327467'), (2171, 'HAS_VALUE', 10, 1030, 137, '2026-02-13 10:34:15.327467'), (2172, 'HAS_ELEMENT', 10, 886, 138, '2026-02-13 10:34:15.327467'), (2173, 'HAS_VALUE', 10, 1031, 138, '2026-02-13 10:34:15.327467'), (2174, 'HAS_ELEMENT', 10, 887, 139, '2026-02-13 10:34:15.327467'), (2175, 'HAS_VALUE', 10, 1032, 139, '2026-02-13 10:34:15.327467'), (2176, 'HAS_ELEMENT', 10, 888, 140, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2177, 'HAS_VALUE', 10, 1033, 140, '2026-02-13 10:34:15.327467'), (2178, 'HAS_ELEMENT', 10, 889, 141, '2026-02-13 10:34:15.327467'), (2179, 'HAS_VALUE', 10, 1034, 141, '2026-02-13 10:34:15.327467'), (2180, 'HAS_ELEMENT', 10, 890, 142, '2026-02-13 10:34:15.327467'), (2181, 'HAS_VALUE', 10, 1035, 142, '2026-02-13 10:34:15.327467'), (2182, 'HAS_ELEMENT', 10, 891, 143, '2026-02-13 10:34:15.327467'), (2183, 'HAS_VALUE', 10, 1036, 143, '2026-02-13 10:34:15.327467'), (2184, 'HAS_ELEMENT', 10, 892, 144, '2026-02-13 10:34:15.327467'), (2185, 'HAS_VALUE', 10, 1037, 144, '2026-02-13 10:34:15.327467'), (2186, 'HAS_ELEMENT', 10, 893, 145, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2187, 'HAS_VALUE', 10, 1038, 145, '2026-02-13 10:34:15.327467'), (2188, 'HAS_ELEMENT', 10, 894, 146, '2026-02-13 10:34:15.327467'), (2189, 'HAS_VALUE', 10, 1039, 146, '2026-02-13 10:34:15.327467'), (2190, 'HAS_ELEMENT', 10, 895, 147, '2026-02-13 10:34:15.327467'), (2191, 'HAS_VALUE', 10, 1040, 147, '2026-02-13 10:34:15.327467'), (2192, 'HAS_ELEMENT', 10, 896, 148, '2026-02-13 10:34:15.327467'), (2193, 'HAS_VALUE', 10, 1041, 148, '2026-02-13 10:34:15.327467'), (2194, 'HAS_ELEMENT', 10, 897, 149, '2026-02-13 10:34:15.327467'), (2195, 'HAS_VALUE', 10, 1042, 149, '2026-02-13 10:34:15.327467'), (2196, 'HAS_ELEMENT', 10, 898, 150, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2197, 'HAS_VALUE', 10, 1043, 150, '2026-02-13 10:34:15.327467'), (2198, 'HAS_ELEMENT', 10, 899, 151, '2026-02-13 10:34:15.327467'), (2199, 'HAS_VALUE', 10, 1044, 151, '2026-02-13 10:34:15.327467'), (2200, 'HAS_ELEMENT', 10, 900, 152, '2026-02-13 10:34:15.327467'), (2201, 'HAS_VALUE', 10, 1045, 152, '2026-02-13 10:34:15.327467'), (2202, 'HAS_ELEMENT', 10, 901, 153, '2026-02-13 10:34:15.327467'), (2203, 'HAS_VALUE', 10, 1046, 153, '2026-02-13 10:34:15.327467'), (2204, 'HAS_ELEMENT', 10, 902, 154, '2026-02-13 10:34:15.327467'), (2205, 'HAS_VALUE', 10, 1047, 154, '2026-02-13 10:34:15.327467'), (2206, 'HAS_ELEMENT', 10, 903, 155, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2207, 'HAS_VALUE', 10, 1048, 155, '2026-02-13 10:34:15.327467'), (2208, 'HAS_ELEMENT', 10, 904, 156, '2026-02-13 10:34:15.327467'), (2209, 'HAS_VALUE', 10, 1049, 156, '2026-02-13 10:34:15.327467'), (2210, 'HAS_ELEMENT', 10, 905, 157, '2026-02-13 10:34:15.327467'), (2211, 'HAS_VALUE', 10, 1050, 157, '2026-02-13 10:34:15.327467'), (2212, 'HAS_ELEMENT', 10, 906, 158, '2026-02-13 10:34:15.327467'), (2213, 'HAS_VALUE', 10, 1051, 158, '2026-02-13 10:34:15.327467'), (2214, 'HAS_ELEMENT', 10, 907, 159, '2026-02-13 10:34:15.327467'), (2215, 'HAS_VALUE', 10, 1052, 159, '2026-02-13 10:34:15.327467'), (2216, 'HAS_ELEMENT', 10, 908, 160, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2217, 'HAS_VALUE', 10, 1053, 160, '2026-02-13 10:34:15.327467'), (2218, 'HAS_ELEMENT', 10, 909, 161, '2026-02-13 10:34:15.327467'), (2219, 'HAS_VALUE', 10, 1054, 161, '2026-02-13 10:34:15.327467'), (2220, 'HAS_ELEMENT', 10, 910, 162, '2026-02-13 10:34:15.327467'), (2221, 'HAS_VALUE', 10, 1055, 162, '2026-02-13 10:34:15.327467'), (2222, 'HAS_ELEMENT', 10, 911, 163, '2026-02-13 10:34:15.327467'), (2223, 'HAS_VALUE', 10, 1056, 163, '2026-02-13 10:34:15.327467'), (2224, 'HAS_ELEMENT', 10, 912, 164, '2026-02-13 10:34:15.327467'), (2225, 'HAS_VALUE', 10, 1057, 164, '2026-02-13 10:34:15.327467'), (2226, 'HAS_ELEMENT', 10, 913, 165, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2227, 'HAS_VALUE', 10, 1058, 165, '2026-02-13 10:34:15.327467'), (2228, 'HAS_ELEMENT', 10, 914, 166, '2026-02-13 10:34:15.327467'), (2229, 'HAS_VALUE', 10, 1059, 166, '2026-02-13 10:34:15.327467'), (2230, 'HAS_ELEMENT', 10, 915, 167, '2026-02-13 10:34:15.327467'), (2231, 'HAS_VALUE', 10, 1060, 167, '2026-02-13 10:34:15.327467'), (2232, 'HAS_ELEMENT', 10, 916, 168, '2026-02-13 10:34:15.327467'), (2233, 'HAS_VALUE', 10, 1061, 168, '2026-02-13 10:34:15.327467'), (2234, 'HAS_ELEMENT', 10, 917, 169, '2026-02-13 10:34:15.327467'), (2235, 'HAS_VALUE', 10, 1062, 169, '2026-02-13 10:34:15.327467'), (2236, 'HAS_ELEMENT', 10, 918, 170, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2237, 'HAS_VALUE', 10, 1063, 170, '2026-02-13 10:34:15.327467'), (2238, 'HAS_ELEMENT', 10, 919, 171, '2026-02-13 10:34:15.327467'), (2239, 'HAS_VALUE', 10, 1064, 171, '2026-02-13 10:34:15.327467'), (2240, 'HAS_ELEMENT', 10, 920, 172, '2026-02-13 10:34:15.327467'), (2241, 'HAS_VALUE', 10, 1065, 172, '2026-02-13 10:34:15.327467'), (2242, 'HAS_ELEMENT', 10, 921, 173, '2026-02-13 10:34:15.327467'), (2243, 'HAS_VALUE', 10, 1066, 173, '2026-02-13 10:34:15.327467'), (2244, 'HAS_ELEMENT', 10, 922, 174, '2026-02-13 10:34:15.327467'), (2245, 'HAS_VALUE', 10, 1067, 174, '2026-02-13 10:34:15.327467'), (2246, 'HAS_ELEMENT', 10, 923, 175, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2247, 'HAS_VALUE', 10, 1068, 175, '2026-02-13 10:34:15.327467'), (2248, 'HAS_ELEMENT', 10, 924, 176, '2026-02-13 10:34:15.327467'), (2249, 'HAS_VALUE', 10, 1069, 176, '2026-02-13 10:34:15.327467'), (2250, 'HAS_ELEMENT', 10, 925, 177, '2026-02-13 10:34:15.327467'), (2251, 'HAS_VALUE', 10, 1070, 177, '2026-02-13 10:34:15.327467'), (2252, 'HAS_ELEMENT', 10, 926, 178, '2026-02-13 10:34:15.327467'), (2253, 'HAS_VALUE', 10, 1071, 178, '2026-02-13 10:34:15.327467'), (2254, 'HAS_ELEMENT', 10, 927, 179, '2026-02-13 10:34:15.327467'), (2255, 'HAS_VALUE', 10, 1072, 179, '2026-02-13 10:34:15.327467'), (2256, 'HAS_ELEMENT', 10, 928, 180, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2257, 'HAS_VALUE', 10, 1073, 180, '2026-02-13 10:34:15.327467'), (2258, 'HAS_ELEMENT', 10, 929, 181, '2026-02-13 10:34:15.327467'), (2259, 'HAS_VALUE', 10, 1074, 181, '2026-02-13 10:34:15.327467'), (2260, 'HAS_ELEMENT', 10, 930, 182, '2026-02-13 10:34:15.327467'), (2261, 'HAS_VALUE', 10, 1075, 182, '2026-02-13 10:34:15.327467'), (2262, 'HAS_ELEMENT', 10, 931, 183, '2026-02-13 10:34:15.327467'), (2263, 'HAS_VALUE', 10, 1076, 183, '2026-02-13 10:34:15.327467'), (2264, 'HAS_ELEMENT', 10, 932, 184, '2026-02-13 10:34:15.327467'), (2265, 'HAS_VALUE', 10, 1077, 184, '2026-02-13 10:34:15.327467'), (2266, 'HAS_ELEMENT', 10, 933, 185, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2267, 'HAS_VALUE', 10, 1078, 185, '2026-02-13 10:34:15.327467'), (2268, 'HAS_ELEMENT', 10, 934, 186, '2026-02-13 10:34:15.327467'), (2269, 'HAS_VALUE', 10, 1079, 186, '2026-02-13 10:34:15.327467'), (2270, 'HAS_ELEMENT', 10, 935, 187, '2026-02-13 10:34:15.327467'), (2271, 'HAS_VALUE', 10, 1080, 187, '2026-02-13 10:34:15.327467'), (2272, 'HAS_ELEMENT', 10, 936, 188, '2026-02-13 10:34:15.327467'), (2273, 'HAS_VALUE', 10, 1081, 188, '2026-02-13 10:34:15.327467'), (2274, 'HAS_ELEMENT', 10, 937, 189, '2026-02-13 10:34:15.327467'), (2275, 'HAS_VALUE', 10, 1082, 189, '2026-02-13 10:34:15.327467'), (2276, 'HAS_ELEMENT', 10, 938, 190, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2277, 'HAS_VALUE', 10, 1083, 190, '2026-02-13 10:34:15.327467'), (2278, 'HAS_ELEMENT', 10, 939, 191, '2026-02-13 10:34:15.327467'), (2279, 'HAS_VALUE', 10, 1084, 191, '2026-02-13 10:34:15.327467'), (2280, 'HAS_ELEMENT', 10, 940, 192, '2026-02-13 10:34:15.327467'), (2281, 'HAS_VALUE', 10, 1085, 192, '2026-02-13 10:34:15.327467'), (2282, 'HAS_ELEMENT', 10, 941, 193, '2026-02-13 10:34:15.327467'), (2283, 'HAS_VALUE', 10, 1086, 193, '2026-02-13 10:34:15.327467'), (2284, 'HAS_ELEMENT', 10, 942, 194, '2026-02-13 10:34:15.327467'), (2285, 'HAS_VALUE', 10, 1087, 194, '2026-02-13 10:34:15.327467'), (2286, 'HAS_ELEMENT', 10, 943, 195, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2287, 'HAS_VALUE', 10, 1088, 195, '2026-02-13 10:34:15.327467'), (2288, 'HAS_ELEMENT', 10, 944, 196, '2026-02-13 10:34:15.327467'), (2289, 'HAS_VALUE', 10, 1089, 196, '2026-02-13 10:34:15.327467'), (2290, 'HAS_ELEMENT', 10, 945, 197, '2026-02-13 10:34:15.327467'), (2291, 'HAS_VALUE', 10, 1090, 197, '2026-02-13 10:34:15.327467'), (2292, 'HAS_ELEMENT', 10, 946, 198, '2026-02-13 10:34:15.327467'), (2293, 'HAS_VALUE', 10, 1091, 198, '2026-02-13 10:34:15.327467'), (2294, 'HAS_ELEMENT', 10, 947, 199, '2026-02-13 10:34:15.327467'), (2295, 'HAS_VALUE', 10, 1092, 199, '2026-02-13 10:34:15.327467'), (2296, 'HAS_ELEMENT', 10, 948, 200, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2297, 'HAS_VALUE', 10, 1093, 200, '2026-02-13 10:34:15.327467'), (2298, 'HAS_ELEMENT', 10, 949, 201, '2026-02-13 10:34:15.327467'), (2299, 'HAS_VALUE', 10, 1094, 201, '2026-02-13 10:34:15.327467'), (2300, 'HAS_ELEMENT', 10, 950, 202, '2026-02-13 10:34:15.327467'), (2301, 'HAS_VALUE', 10, 1095, 202, '2026-02-13 10:34:15.327467'), (2302, 'HAS_ELEMENT', 10, 951, 203, '2026-02-13 10:34:15.327467'), (2303, 'HAS_VALUE', 10, 1096, 203, '2026-02-13 10:34:15.327467'), (2304, 'HAS_ELEMENT', 10, 952, 204, '2026-02-13 10:34:15.327467'), (2305, 'HAS_VALUE', 10, 1097, 204, '2026-02-13 10:34:15.327467'), (2306, 'HAS_ELEMENT', 10, 953, 205, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2307, 'HAS_VALUE', 10, 1098, 205, '2026-02-13 10:34:15.327467'), (2308, 'HAS_ELEMENT', 10, 954, 206, '2026-02-13 10:34:15.327467'), (2309, 'HAS_VALUE', 10, 1099, 206, '2026-02-13 10:34:15.327467'), (2310, 'HAS_ELEMENT', 10, 955, 207, '2026-02-13 10:34:15.327467'), (2311, 'HAS_VALUE', 10, 1100, 207, '2026-02-13 10:34:15.327467'), (2312, 'HAS_ELEMENT', 10, 956, 208, '2026-02-13 10:34:15.327467'), (2313, 'HAS_VALUE', 10, 1101, 208, '2026-02-13 10:34:15.327467'), (2314, 'HAS_ELEMENT', 10, 957, 209, '2026-02-13 10:34:15.327467'), (2315, 'HAS_VALUE', 10, 1102, 209, '2026-02-13 10:34:15.327467'), (2316, 'HAS_ELEMENT', 10, 958, 210, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2317, 'HAS_VALUE', 10, 1103, 210, '2026-02-13 10:34:15.327467'), (2318, 'HAS_ELEMENT', 10, 959, 211, '2026-02-13 10:34:15.327467'), (2319, 'HAS_VALUE', 10, 1104, 211, '2026-02-13 10:34:15.327467'), (2320, 'HAS_ELEMENT', 10, 960, 212, '2026-02-13 10:34:15.327467'), (2321, 'HAS_VALUE', 10, 1105, 212, '2026-02-13 10:34:15.327467'), (2322, 'HAS_ELEMENT', 10, 961, 213, '2026-02-13 10:34:15.327467'), (2323, 'HAS_VALUE', 10, 1106, 213, '2026-02-13 10:34:15.327467'), (2324, 'HAS_ELEMENT', 10, 962, 214, '2026-02-13 10:34:15.327467'), (2325, 'HAS_VALUE', 10, 1107, 214, '2026-02-13 10:34:15.327467'), (2326, 'HAS_ELEMENT', 10, 963, 215, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2327, 'HAS_VALUE', 10, 1108, 215, '2026-02-13 10:34:15.327467'), (2328, 'HAS_ELEMENT', 10, 964, 216, '2026-02-13 10:34:15.327467'), (2329, 'HAS_VALUE', 10, 1109, 216, '2026-02-13 10:34:15.327467'), (2330, 'HAS_ELEMENT', 10, 965, 217, '2026-02-13 10:34:15.327467'), (2331, 'HAS_VALUE', 10, 1110, 217, '2026-02-13 10:34:15.327467'), (2332, 'HAS_ELEMENT', 10, 966, 218, '2026-02-13 10:34:15.327467'), (2333, 'HAS_VALUE', 10, 1111, 218, '2026-02-13 10:34:15.327467'), (2334, 'HAS_ELEMENT', 10, 967, 219, '2026-02-13 10:34:15.327467'), (2335, 'HAS_VALUE', 10, 1112, 219, '2026-02-13 10:34:15.327467'), (2336, 'HAS_ELEMENT', 10, 968, 220, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2337, 'HAS_VALUE', 10, 1113, 220, '2026-02-13 10:34:15.327467'), (2338, 'HAS_ELEMENT', 10, 969, 221, '2026-02-13 10:34:15.327467'), (2339, 'HAS_VALUE', 10, 1114, 221, '2026-02-13 10:34:15.327467'), (2340, 'HAS_ELEMENT', 10, 970, 222, '2026-02-13 10:34:15.327467'), (2341, 'HAS_VALUE', 10, 1115, 222, '2026-02-13 10:34:15.327467'), (2342, 'HAS_ELEMENT', 10, 971, 223, '2026-02-13 10:34:15.327467'), (2343, 'HAS_VALUE', 10, 1116, 223, '2026-02-13 10:34:15.327467'), (2344, 'HAS_ELEMENT', 10, 972, 224, '2026-02-13 10:34:15.327467'), (2345, 'HAS_VALUE', 10, 1117, 224, '2026-02-13 10:34:15.327467'), (2346, 'HAS_ELEMENT', 10, 973, 225, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2347, 'HAS_VALUE', 10, 1118, 225, '2026-02-13 10:34:15.327467'), (2348, 'HAS_ELEMENT', 10, 974, 226, '2026-02-13 10:34:15.327467'), (2349, 'HAS_VALUE', 10, 1119, 226, '2026-02-13 10:34:15.327467'), (2350, 'HAS_ELEMENT', 10, 975, 227, '2026-02-13 10:34:15.327467'), (2351, 'HAS_VALUE', 10, 1120, 227, '2026-02-13 10:34:15.327467'), (2352, 'HAS_ELEMENT', 10, 976, 228, '2026-02-13 10:34:15.327467'), (2353, 'HAS_VALUE', 10, 1121, 228, '2026-02-13 10:34:15.327467'), (2354, 'HAS_ELEMENT', 10, 977, 229, '2026-02-13 10:34:15.327467'), (2355, 'HAS_VALUE', 10, 1122, 229, '2026-02-13 10:34:15.327467'), (2356, 'HAS_ELEMENT', 10, 978, 230, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2357, 'HAS_VALUE', 10, 1123, 230, '2026-02-13 10:34:15.327467'), (2358, 'HAS_ELEMENT', 10, 979, 231, '2026-02-13 10:34:15.327467'), (2359, 'HAS_VALUE', 10, 1124, 231, '2026-02-13 10:34:15.327467'), (2360, 'HAS_ELEMENT', 10, 980, 232, '2026-02-13 10:34:15.327467'), (2361, 'HAS_VALUE', 10, 1125, 232, '2026-02-13 10:34:15.327467'), (2362, 'HAS_ELEMENT', 10, 981, 233, '2026-02-13 10:34:15.327467'), (2363, 'HAS_VALUE', 10, 1126, 233, '2026-02-13 10:34:15.327467'), (2364, 'HAS_ELEMENT', 10, 982, 234, '2026-02-13 10:34:15.327467'), (2365, 'HAS_VALUE', 10, 1127, 234, '2026-02-13 10:34:15.327467'), (2366, 'HAS_ELEMENT', 10, 983, 235, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2367, 'HAS_VALUE', 10, 1128, 235, '2026-02-13 10:34:15.327467'), (2368, 'HAS_ELEMENT', 10, 984, 236, '2026-02-13 10:34:15.327467'), (2369, 'HAS_VALUE', 10, 1129, 236, '2026-02-13 10:34:15.327467'), (2370, 'HAS_ELEMENT', 10, 985, 237, '2026-02-13 10:34:15.327467'), (2371, 'HAS_VALUE', 10, 1130, 237, '2026-02-13 10:34:15.327467'), (2372, 'HAS_ELEMENT', 10, 986, 238, '2026-02-13 10:34:15.327467'), (2373, 'HAS_VALUE', 10, 1131, 238, '2026-02-13 10:34:15.327467'), (2374, 'HAS_ELEMENT', 10, 987, 239, '2026-02-13 10:34:15.327467'), (2375, 'HAS_VALUE', 10, 1132, 239, '2026-02-13 10:34:15.327467'), (2376, 'HAS_ELEMENT', 10, 988, 240, '2026-02-13 10:34:15.327467'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2377, 'HAS_VALUE', 10, 1133, 240, '2026-02-13 10:34:15.327467'), (2378, 'HAS_ELEMENT', 10, 989, 241, '2026-02-13 10:34:15.327467'), (2379, 'HAS_VALUE', 10, 1134, 241, '2026-02-13 10:34:15.327467'), (2380, 'HAS_ELEMENT', 10, 990, 242, '2026-02-13 10:34:15.327467'), (2381, 'HAS_VALUE', 10, 1135, 242, '2026-02-13 10:34:15.327467'), (2382, 'HAS_ELEMENT', 10, 991, 243, '2026-02-13 10:34:15.327467'), (2383, 'HAS_VALUE', 10, 1136, 243, '2026-02-13 10:34:15.327467'), (2384, 'HAS_ELEMENT', 10, 992, 244, '2026-02-13 10:34:15.327467'), (2385, 'HAS_VALUE', 10, 1137, 244, '2026-02-13 10:34:15.327467'), (2386, 'HAS_ATTACHMENT', 10, 400, 0, '2026-02-13 17:07:39.736899'); INSERT INTO edges (id, edge_type, from_node_id, to_node_id, sort_order, created_at) VALUES (2387, 'HAS_ATTACHMENT', 10, 401, 1, '2026-02-13 17:07:39.736899'), (2388, 'HAS_ATTACHMENT', 10, 402, 2, '2026-02-13 17:07:39.736899'), (2389, 'HAS_ATTACHMENT', 10, 403, 3, '2026-02-13 17:07:39.736899'), (2390, 'HAS_ATTACHMENT', 10, 404, 4, '2026-02-13 17:07:39.736899'), (2391, 'HAS_ATTACHMENT', 10, 405, 5, '2026-02-13 17:07:39.736899'), (2392, 'HAS_ATTACHMENT', 10, 406, 6, '2026-02-13 17:07:39.736899'), (2393, 'HAS_ATTACHMENT', 10, 407, 7, '2026-02-13 17:07:39.736899'), (2394, 'HAS_ATTACHMENT', 10, 408, 8, '2026-02-13 17:07:39.736899'); -- node_properties (1352 rows) INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (1, 10, 'title', '成都院2024年复审报告', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (2, 10, 'description', '成都院电力安全生产标准化复审报告', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (3, 10, 'status', 'draft', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (4, 10, 'template_type', '电力安全生产标准化复审报告', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (5, 10, 'content_html', '
报告内容...
', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (6, 10, 'content_markdown', '# 成都院2024年复审报告\n\n报告内容...', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (85, 600, 'rule_type', 'direct_entity', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (86, 600, 'action_type', 'use_entity_value', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (87, 600, 'description', '直接使用附件实体值填充项目编号', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (88, 601, 'rule_type', 'direct_entity', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (89, 601, 'action_type', 'use_entity_value', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (90, 601, 'description', '直接使用附件实体值填充评审对象', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (91, 602, 'rule_type', 'direct_entity', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (92, 602, 'action_type', 'use_entity_value', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (93, 602, 'description', '直接使用附件实体值填充评审开始日期', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (94, 603, 'rule_type', 'direct_entity', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (95, 603, 'action_type', 'use_entity_value', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (96, 603, 'description', '直接使用附件实体值填充评审结束日期', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (97, 604, 'rule_type', 'direct_entity', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (98, 604, 'action_type', 'use_entity_value', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (99, 604, 'description', '直接使用附件实体值填充评审得分', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (105, 600, 'last_output_text', 'BZ-0092-2024', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (106, 600, 'last_run_status', 'success', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (107, 601, 'last_output_text', '中国电建集团成都勘测设计研究院有限公司', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (108, 601, 'last_run_status', 'success', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (109, 602, 'last_output_text', '2024年7月13日', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (110, 602, 'last_run_status', 'success', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (111, 603, 'last_output_text', '2024年10月17日', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (112, 603, 'last_run_status', 'success', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (113, 604, 'last_output_text', '93.33', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (114, 604, 'last_run_status', 'success', NULL, NULL, NULL, '2026-02-13 00:38:50.395930', '2026-02-13 00:38:50.395930'), (3030, 701, 'namespace', 'basicInfo', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3031, 701, 'field_name', 'projectCode', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3032, 701, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3033, 701, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3034, 701, 'description', '项目编号,格式如 BZ-0092-2024', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3035, 702, 'namespace', 'basicInfo', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3036, 702, 'field_name', 'requestLevel', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3037, 702, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3038, 702, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3039, 702, 'description', '申请类别级别,如一级', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3040, 703, 'namespace', 'basicInfo', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3041, 703, 'field_name', 'reviewObjectCertificateGetAt', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3042, 703, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3043, 703, 'required', 'false', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3044, 703, 'description', '获得安全生产标准化证书日期', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3045, 704, 'namespace', 'basicInfo', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3046, 704, 'field_name', 'reviewObjectCertificate2GetAt', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3047, 704, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3048, 704, 'required', 'false', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3049, 704, 'description', '通过标准化评审日期', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3050, 705, 'namespace', 'basicInfo', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3051, 705, 'field_name', 'applyAt', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3052, 705, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3053, 705, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3054, 705, 'description', '提出复审申请日期', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3055, 706, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3056, 706, 'field_name', 'reviewObject', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3057, 706, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3058, 706, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3059, 706, 'description', '评审对象全称', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3060, 707, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3061, 707, 'field_name', 'reviewObjectAlias', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3062, 707, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3063, 707, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3064, 707, 'description', '评审对象简称,用于正文中引用', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3065, 708, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3066, 708, 'field_name', 'resultScore', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3067, 708, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3068, 708, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3069, 708, 'description', '评审得分', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3070, 709, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3071, 709, 'field_name', 'resultLevel', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3072, 709, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3073, 709, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3074, 709, 'description', '评审结论级别,如一级', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3075, 710, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3076, 710, 'field_name', 'workStartAt', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3077, 710, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3078, 710, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3079, 710, 'description', '评审工作开始日期', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3080, 711, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3081, 711, 'field_name', 'workEndAt', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3082, 711, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3083, 711, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3084, 711, 'description', '评审工作结束日期', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3085, 712, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3086, 712, 'field_name', 'createdAt', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3087, 712, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3088, 712, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3089, 712, 'description', '报告编制日期,如2024年11月', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3090, 713, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3091, 713, 'field_name', 'reviewObjectSummary', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3092, 713, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3093, 713, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3094, 713, 'description', '评审对象概况(多段落)', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3095, 714, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3096, 714, 'field_name', 'reviewObjectDescription', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3097, 714, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3098, 714, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3099, 714, 'description', '评审对象简介', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3100, 715, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3101, 715, 'field_name', 'reviewPeriod', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3102, 715, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3103, 715, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3104, 715, 'description', '评审期,如2023年7月8日至2024年7月7日', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3105, 716, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3106, 716, 'field_name', 'target', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3107, 716, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3108, 716, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3109, 716, 'description', '1.2.1 目标职责-目标', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3110, 717, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3111, 717, 'field_name', 'duty', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3112, 717, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3113, 717, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3114, 717, 'description', '1.2.1 目标职责-职责', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3115, 718, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3116, 718, 'field_name', 'fullParticipation', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3117, 718, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3118, 718, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3119, 718, 'description', '1.2.1 目标职责-全员参与', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3120, 719, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3121, 719, 'field_name', 'safetyInvestment', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3122, 719, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3123, 719, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3124, 719, 'description', '1.2.1 目标职责-安全投入', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3125, 720, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3126, 720, 'field_name', 'safetyCulture', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3127, 720, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3128, 720, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3129, 720, 'description', '1.2.1 目标职责-安全文化', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3130, 721, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3131, 721, 'field_name', 'systematicManagement', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3132, 721, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3133, 721, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3134, 721, 'description', '1.2.2 制度化管理-体系化管理', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3135, 722, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3136, 722, 'field_name', 'employeeTraining', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3137, 722, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3138, 722, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3139, 722, 'description', '1.2.3 教育培训-人员教育培训', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3140, 723, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3141, 723, 'field_name', 'assetManagement', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3142, 723, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3143, 723, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3144, 723, 'description', '1.2.4 现场管理-设备设施管理', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3145, 724, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3146, 724, 'field_name', 'jobSafety', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3147, 724, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3148, 724, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3149, 724, 'description', '1.2.4 现场管理-作业安全', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3150, 725, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3151, 725, 'field_name', 'positionQualified', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3152, 725, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3153, 725, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3154, 725, 'description', '1.2.4 现场管理-岗位达标', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3155, 726, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3156, 726, 'field_name', 'partner', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3157, 726, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3158, 726, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3159, 726, 'description', '1.2.4 现场管理-相关方', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3160, 727, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3161, 727, 'field_name', 'occupationalHealth', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3162, 727, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3163, 727, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3164, 727, 'description', '1.2.4 现场管理-职业健康', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3165, 728, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3166, 728, 'field_name', 'riskAssessment', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3167, 728, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3168, 728, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3169, 728, 'description', '1.2.5 安全风险管控-风险辨识与评价', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3170, 729, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3171, 729, 'field_name', 'majorHazardManagement', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3172, 729, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3173, 729, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3174, 729, 'description', '1.2.5 安全风险管控-重大危险源管理', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3175, 730, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3176, 730, 'field_name', 'hazardInspection', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3177, 730, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3178, 730, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3179, 730, 'description', '1.2.5 安全风险管控-隐患排查', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3180, 731, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3181, 731, 'field_name', 'changeManagement', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3182, 731, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3183, 731, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3184, 731, 'description', '1.2.5 安全风险管控-变更管理', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3185, 732, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3186, 732, 'field_name', 'earlyWarning', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3187, 732, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3188, 732, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3189, 732, 'description', '1.2.5 安全风险管控-预测预警', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3190, 733, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3191, 733, 'field_name', 'emergencyResponse', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3192, 733, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3193, 733, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3194, 733, 'description', '1.2.6 应急救援', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3195, 734, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3196, 734, 'field_name', 'incidentManagement', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3197, 734, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3198, 734, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3199, 734, 'description', '1.2.7 事故管理', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3200, 735, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3201, 735, 'field_name', 'continuousImprovement', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3202, 735, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3203, 735, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3204, 735, 'description', '1.2.8 持续改进', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3205, 736, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3206, 736, 'field_name', 'safetyStandardizationStatus', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3207, 736, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3208, 736, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3209, 736, 'description', '1.3 安全生产标准化建设和持续运行情况', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3210, 737, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3211, 737, 'field_name', 'safetyHighlight', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3212, 737, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3213, 737, 'required', 'false', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3214, 737, 'description', '1.4 安全生产管理亮点', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3215, 738, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3216, 738, 'field_name', 'reviewObjectSelfAssessmentProcess', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3217, 738, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3218, 738, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3219, 738, 'description', '2.1 自评过程', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3220, 739, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3221, 739, 'field_name', 'moreWorkReference', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3222, 739, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3223, 739, 'required', 'false', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3224, 739, 'description', '其他工作依据文件名称', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3225, 740, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3226, 740, 'field_name', 'reviewRange', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3227, 740, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3228, 740, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3229, 740, 'description', '3.3 复审范围', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3230, 741, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3231, 741, 'field_name', 'workProcess', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3232, 741, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3233, 741, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3234, 741, 'description', '3.5.3 现场复审工作过程', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3235, 742, 'namespace', 'project', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3236, 742, 'field_name', 'closingMeetingAt', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3237, 742, 'element_type', 'text', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3238, 742, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3239, 742, 'description', '末次会议日期时间', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3240, 743, 'namespace', 'table', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3241, 743, 'field_name', 'SPSRRReviewProject', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3242, 743, 'element_type', 'table', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3243, 743, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3244, 743, 'description', '3.5.1 现场复审项目选择(动态表格)', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3245, 744, 'namespace', 'table', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3246, 744, 'field_name', 'SPSRRReviewer', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3247, 744, 'element_type', 'table', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3248, 744, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3249, 744, 'description', '3.5.2 现场复审人员(动态表格)', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3250, 745, 'namespace', 'table', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3251, 745, 'field_name', 'review_status', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3252, 745, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3253, 745, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3254, 745, 'description', '4 现场复审情况(动态段落)', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3255, 746, 'namespace', 'table', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3256, 746, 'field_name', 'target_responsibility', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3257, 746, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3258, 746, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3259, 746, 'description', '4.1.1 目标职责复审情况(动态段落)', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3260, 747, 'namespace', 'table', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3261, 747, 'field_name', 'institutionalized_management', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3262, 747, 'element_type', 'paragraph', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3263, 747, 'required', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3264, 747, 'description', '4.1.2 制度化管理复审情况(动态段落)', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3265, 701, 'sort_order', '1', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3266, 702, 'sort_order', '2', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3267, 703, 'sort_order', '3', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3268, 704, 'sort_order', '4', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3269, 705, 'sort_order', '5', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3270, 706, 'sort_order', '6', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3271, 707, 'sort_order', '7', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3272, 708, 'sort_order', '8', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3273, 709, 'sort_order', '9', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3274, 710, 'sort_order', '10', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3275, 711, 'sort_order', '11', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3276, 712, 'sort_order', '12', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3277, 713, 'sort_order', '13', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3278, 714, 'sort_order', '14', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3279, 715, 'sort_order', '15', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3280, 716, 'sort_order', '16', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3281, 717, 'sort_order', '17', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3282, 718, 'sort_order', '18', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3283, 719, 'sort_order', '19', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3284, 720, 'sort_order', '20', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3285, 721, 'sort_order', '21', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3286, 722, 'sort_order', '22', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3287, 723, 'sort_order', '23', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3288, 724, 'sort_order', '24', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3289, 725, 'sort_order', '25', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3290, 726, 'sort_order', '26', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3291, 727, 'sort_order', '27', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3292, 728, 'sort_order', '28', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3293, 729, 'sort_order', '29', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3294, 730, 'sort_order', '30', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3295, 731, 'sort_order', '31', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3296, 732, 'sort_order', '32', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3297, 733, 'sort_order', '33', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3298, 734, 'sort_order', '34', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3299, 735, 'sort_order', '35', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3300, 736, 'sort_order', '36', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3301, 737, 'sort_order', '37', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3302, 738, 'sort_order', '38', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3303, 739, 'sort_order', '39', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3304, 740, 'sort_order', '40', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3305, 741, 'sort_order', '41', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3306, 742, 'sort_order', '42', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3307, 743, 'sort_order', '43', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3308, 744, 'sort_order', '44', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3309, 745, 'sort_order', '45', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3310, 746, 'sort_order', '46', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3311, 747, 'sort_order', '47', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3312, 801, 'value_text', 'BZ-0092-2024', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3313, 801, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3314, 801, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3315, 802, 'value_text', '一级', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3316, 802, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3317, 802, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3318, 803, 'value_text', '2019年12月9日', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3319, 803, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3320, 803, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3321, 804, 'value_text', '2019年', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3322, 804, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3323, 804, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3324, 805, 'value_text', '2024年7月8日', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3325, 805, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3326, 805, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3327, 806, 'value_text', '中国电建集团成都勘测设计研究院有限公司', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3328, 806, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3329, 806, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3330, 807, 'value_text', '成都院', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3331, 807, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3332, 807, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3333, 808, 'value_text', '93.33', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3334, 808, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3335, 808, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3336, 809, 'value_text', '一级', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3337, 809, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3338, 809, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3339, 810, 'value_text', '2024年7月13日', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3340, 810, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3341, 810, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3342, 811, 'value_text', '2024年10月19日', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3343, 811, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3344, 811, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3345, 812, 'value_text', '2024年11月', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3346, 812, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3347, 812, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3348, 815, 'value_text', '2023年7月8日至2024年7月7日', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3349, 815, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3350, 815, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3351, 839, 'value_text', '《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安环〔2024〕20号)', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3352, 839, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3353, 839, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3354, 840, 'value_text', '成都院本部各职能部门、勘测设计分公司/YX工程院/抽蓄院(简称:设计分公司)、工程建设分公司(简称:建设分公司)、重庆云阳建全抽水蓄能电站EPC总承包监理项目(简称:云阳监理项目)、漳州高新区绿色发展生态治理项目工程总承包(EPC)建设项目(简称:漳州总包项目)、大邑抽水蓄能电站地质勘察项目(简称:大邑地勘项目)、大渡河双江口设计项目(简称:双江口设计项目)的作业现场、设备设施及安全管理', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3355, 840, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3356, 840, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3357, 842, 'value_text', '2024年10月17日上10:30~12:00', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3358, 842, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3359, 842, 'fill_source', 'manual', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:02:16.541961'), (3360, 813, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3361, 813, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3362, 814, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3363, 814, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3364, 816, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3365, 816, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3366, 817, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3367, 817, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3368, 818, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3369, 818, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3370, 819, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3371, 819, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3372, 820, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3373, 820, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3374, 821, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3375, 821, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3376, 822, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3377, 822, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3378, 823, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3379, 823, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3380, 824, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3381, 824, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3382, 825, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3383, 825, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3384, 826, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3385, 826, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3386, 827, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3387, 827, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3388, 828, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3389, 828, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3390, 829, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3391, 829, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3392, 830, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3393, 830, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3394, 831, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3395, 831, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3396, 832, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3397, 832, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3398, 833, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3399, 833, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3400, 834, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3401, 834, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3402, 835, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3403, 835, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3404, 836, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3405, 836, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3406, 837, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3407, 837, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3408, 838, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3409, 838, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3410, 841, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3411, 841, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3412, 843, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3413, 843, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3414, 844, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3415, 844, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:08:48.583305'), (3416, 845, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:09:09.966040'), (3417, 845, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:09:09.966040'), (3418, 846, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:09:09.966040'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3419, 846, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:09:09.966040'), (3420, 847, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:09:09.966040'), (3421, 847, 'fill_source', 'auto', NULL, NULL, NULL, '2026-02-13 02:02:16.541961', '2026-02-13 02:09:09.966040'), (3422, 813, 'value_text', '中国电建集团成都勘测设计研究院有限公司为中国电力建设集团(股份)有限公司(以下简称“股份公司”)的全资子企业,其历史可以追溯至1950年成立的燃料工业部西南水力发电工程处。经过70多年发展壮大,已成为在能源电力、水资源与环境、城市建设与基础设施领域,为全球客户提供规划咨询、勘测设计、施工建造、投资运营全产业链一体化综合服务的大型综合性勘测设计研究单位。 成都院致力于为全球清洁能源工程及基础设施、环境工程提供系统产品与整体解决方案和服务。公司现有1名首届国家卓越工程师、2名全国工程勘察设计大师、2名国家百千万人才专家、7名全国行业大师、15名四川省勘察设计大师在内的近7000名高素质人才队伍;国家企业技术中心、网络安全等级保护与安全保卫技术国家工程研究中心、国家能源水能风能研究分中心等5个国家级研发机构,西藏自治区水风光储能源技术创新中心等12个高端科创中心;工程设计综合甲级、工程勘察综合类甲级、咨询综合甲级、监理综合甲级(四综甲)与电力、水利水电、市政公用工程施工总承包一级等40余项资质证书。90多项专有技术、200多项国家与行业标准、1000多项国家级省部级奖项(一等奖2项、技术发明奖1项)、2000多项国家专利(发明专利580余项),遍布全球近60个国家和地区的700多个工程,使成都院一直保持行业领先地位。 成都院组织机构如图1.1-1。 图1.1-1 成都院组织机构图', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3425, 814, 'value_text', '中国电建集团成都勘测设计研究院有限公司为中国电力建设集团(股份)有限公司(以下简称“股份公司”)的全资子企业,其历史可以追溯至1950年成立的燃料工业部西南水力发电工程处。经过70多年发展壮大,已成为在能源电力、水资源与环境、城市建设与基础设施领域,为全球客户提供规划咨询、勘测设计、施工建造、投资运营全产业链一体化综合服务的大型综合性勘测设计研究单位。 成都院致力于为全球清洁能源工程及基础设施、环境工程提供系统产品与整体解决方案和服务。公司现有1名首届国家卓越工程师、2名全国工程勘察设计大师、2名国家百千万人才专家、7名全国行业大师、15名四川省勘察设计大师在内的近7000名高素质人才队伍;国家企业技术中心、网络安全等级保护与安全保卫技术国家工程研究中心、国家能源水能风能研究分中心等5个国家级研发机构,西藏自治区水风光储能源技术创新中心等12个高端科创中心;工程设计综合甲级、工程勘察综合类甲级、咨询综合甲级、监理综合甲级(四综甲)与电力、水利水电、市政公用工程施工总承包一级等40余项资质证书。90多项专有技术、200多项国家与行业标准、1000多项国家级省部级奖项(一等奖2项、技术发明奖1项)、2000多项国家专利(发明专利580余项),遍布全球近60个国家和地区的700多个工程,使成都院一直保持行业领先地位。 成都院组织机构如图1.1-1。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3428, 816, 'value_text', '成都院制定并发布《QHSE“十四五”规划》(安质〔2023〕1号),文件经时任董事长黄河批准,明确了总体安全生产目标,包括持续保持“零死亡、零重伤”的安全生产事故控制目标等安全管理及事故控制目标7项,总体目标是《中国电建集团成都勘测设计研究院有限公司“十四五”规划》的子规划,安全生产与职业健康工作目标纳入总体生产经营目标。成都院发布《关于印发<成都院2024年安全生产与职业健康、能源节约与生态环境保护工作目标和重点>的通知》(蓉设安质〔2024〕18号),文件经成都院安委会审议,董事长何彦锋签发,明确了2024年安全生产与职业健康目标包括9项安全管理目标和10项事故控制目标。成都院制定的总体目标和2024年度安全生产与职业健康目标,均包含人员、设备设施、交通、消防、作业环境、职业健康等方面的事故控制指标和管理目标。 成都院《安全生产目标管理规定》(SQE.01C0250),明确了成都院、安全质量环保部、分/子公司等职责与权限,明确了目标指标的制定、分解、实施、评审和考核等管理要求。成都院各层级管理机构对安全生产目标进行了分解,2024年2月22日,成都院董事长何彦锋与管理部门、区域分公司、分/子公司第一责任人签订《安全生产目标责任书》42份,责任书内容包括安全生产第一责任人职责、安全生产目标、保障措施、检查考核等内容,切实做到安全责任“横向到边、纵向到底”。 成都院发布《关于印发<成都院2024年安全生产与职业健康、能源节约与生态环境保护工作目标和重点>的通知》(蓉设安质〔2024〕18号),明确2024年度将开展的7部分共28项的安全生产与职业健康重点工作,将安全生产治本攻坚三年(2024-2026)行动、继续深化安全生产“有感领导”建设、落实传统高风险项目分工包保安全机制等均纳入年度工作重点;成都院制定了2024年安全生产与职业健康工作计划,包括签订《2024年安全生产责任书》、组织召开2024年度安全生产工作会、制定2024年安全生产费用预算等15大类共76项计划内容,并明确了各项计划的责任单位、协助单位、相关单位、实施时间等。 成都院每月对年度工作计划的完成情况进行统计分析,填写《2024年安全生产与职业健康工作计划完成表》;成都院依照《2023年安全生产与职业健康、能源节约与生态环境保护绩效考核情况表》,组织对各管理部门、区域公司、分/子公司的安全管理目标完成情况进行考核和打分排名,并在成都院2024年度第一次安委会上进行了审议和通报。成都院发布《关于表彰2023年度安全生产先进单位、集体和个人的决定》(蓉设安质〔2024〕13号),对在2023年度安全环保工作中取得突出成绩的新能源工程分公司等6家单位、国际工程分公司综合管理部等18个集体、李志勇等33名员工予以表彰奖励。成都院制定并实施《安全生产风险抵押金管理办法》,根据年度安全生产考核情况和目标完成情况等,对安全生产风险抵押金予以返还。成都院分子公司和项目部依据公司的管理规定,按计划每月、季度、年度开展对安全生产目标完成情况进行检查、评估、考核,考核结果报安委会通过。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3431, 817, 'value_text', '成都院2023年9月15日发布《关于公司跨部门议事协调机构设置及有关事项的通知》(蓉设党字〔2023〕55号),成立了安全生产委员会,并根据机构人员变动情况及时调整安委会成员,明确了成都院安委会主任为党委书记、董事长何彦锋,副主任为分管安全副总经理鞠其凤,成员由其他班子成员和高管、职能部门负责人、分/子公司负责人组成。成都院制定了《安委会工作制度与安全生产会议办法》(SQE.01C0213),明确了安委会组成、职责与权限、安委会工作制度和工作要求等。 成都院每年召开2次安委会,由安委会主任主持并签发会议纪要。2024年2月7日召开了成都院2024年度安全生产委员会第一次会议,会议由董事长何彦锋主持,49名安委会成员参加会议,会议议程5项,会议传达了有关安全生产会议文件精神,听取上次安委会决议落实情况汇报,对公司安全风险TOP10管控情况进行了汇报,审议了公司安全先进名单、风险抵押金返还、应急救援队伍建设等6项安全生产重大事项,安排部署了2024年一季度安全风险防范工作,董事长何彦锋对汛期安全、下阶段安全生产工作等重要工作提出了工作要求和安排部署,会后发布了《公司2024年度安全生产委员会第一次会议纪要》(安质〔2024〕第3期)。 成都院建立健全了以董事长何彦锋为主要责任人的安全行政管理体系,以总工程师夏勇为主要责任人的安全技术支撑体系,以赵晓峰等10名分管生产副总经理为主要责任人的安全生产实施体系,以分管安全副总经理鞠其凤为主要责任人的安全监督管理体系,建立了体系框图,明确了安全生产“四个责任体系”人员组成和主要职责;成都院发布《关于开展2024年安全生产与职业健康、节约能源与生态环境保护检查考核的通知》(蓉设安质〔2024〕19号),成都院各体系负责人参与了对各部门、区域公司、分/子公司的安全考核,考核内容包括安全生产责任制履职情况等。 成都院建立了以分管安全副总经理为负责人的安全生产监督体系,覆盖公司分管领导、安全总监、本部专职安全人员、分子公司二级单位安管人员、项目部的安全管理人员。成都院发布了《关于向林等人职务聘免的通知》(蓉设党干〔2023〕5号)《关于欧文兵等人职务聘免的通知》(蓉设党干〔2021〕12号),聘任向林为公司安全总监,聘任刘建冰为安全质量环保部主任。成都院设置安全质量环保部,内设两个科室,其中安全管理室履行安全生产管理工作,配备6名专职安全管理人员:邱广东、黄凡、李豆豆、王化恶、席传鹏、邹建国。成都院安全总监、安全管理人员等均持证上岗。成都院发布实施了《个人执业资格管理办法》,鼓励和支持安全生产监督管理人员取得注册安全工程师资质,刘建冰等5人取得注册安全工程师证。 成都院党委书记、董事长何彦锋全面履职安全生产和职业健康职责,建立健全并落实安全生产责任制度,组织开展了2024年度成都院安全生产标准自查评工作,组织制定并签发实施了73项安全管理制度,以及2024年安全生产与职业健康、节约能源与生态环境保护工作目标和重点、安全教育培训计划、安全生产费用预算等;在主持召开的董事长办公会、党委会和安委会会议上,多次传达、学习习总书记和股份公司关于安全生产的重要精神,并定期研究部署安全工作;带队对福建漳州项目部等项目开展安全检查工作,并提出安全管理要求。成都院其他班子成员认真履职,总经理张世殊在总经理办公会、安委会等不同场合,统筹协调生产经营与安全生产工作,带队开展博州光热等项目安全检查工作;副总经理鞠其凤对亭子口项目等5个项目带队检查,赵晓峰对双江口项目等4个项目带队检查;安全总监向林对漳州生态治理等21个项目带队检查等。成都院各级管理部门、人员按照安全生产和职业健康责任制、安全生产“一岗一清单”的相关要求,履行其安全生产和职业健康管理职责。 成都院2024年3月1日召开了2024年安全生产工作会,会上对2023年安全生产工作情况进行了总结,对存在的问题进行了分析,并布置了2024年度安全生产工作。成都院每次安委会会议均对上次布置的工作完成情况进行了汇报,形成闭环,并形成会议纪要发布。 成都院安全监督管理人员对安全管理主要风险和隐患进行现场监督。成都院制定2024年度隐患排查治理工作实施方案,按检查考核要求,采取“业安融合”“安全生产与综合履约检查一体化”“交叉检查”“驻点帮扶”等方式,2024年1月至9月先后组织6个检查组实施检查35次,检查覆盖29项目,其中安全风险十大项目和重点项目覆盖率100%,隐患整改率100%。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3434, 818, 'value_text', '成都院建立健全并落实《安全生产责任制》(SQE.01C0201),发布了《关于发布<公司总部安全生产一岗一清单>的通知》(安质函〔2019〕32号)《关于发布<公司安全生产“四个责任体系”责任人、党组织书记、相关职能部门及重点岗位履职清单》的通知>(安质函〔2019〕23号)等,明确了各级机构、各级负责人、各岗位人员安全生产职责。2022年12月,成都院安全质量环保部组织各单位根据新《安全生产法》、中国电力建设集团(股份)有限公司安全生产责任制(2021版)对相关制度文件进行修订,及时更新。 成都院在《职业健康安全与环境2023年合规性评价报告》中,对《安全生产管理规定》《安全生产责任制》的适宜性进行了评估;在《安全生产管理奖惩办法》(SQE.01C0212)《生产安全事故管理办法》(SQE.01C0217)中,明确了各单位履职情况检查、考核标准与要求。成都院各职能部门共同参与HSE目标半年度和年度考核,考核结果经公司安委办汇总,并按规定履行相关审批程序后,形成年度安全环保目标考核结果。 成都院鼓励全体员工积极建言献策,员工积极响应,公司根据员工建言献策情况不断改进安全管理工作;成都院发布实施《安全生产激励约束规定》(SQE.01C0251),结合各岗位“一岗一清单”要求,由全体员工年底在OA系统填报履职情况,部门领导核查审批,实现全员有安全职责、有自查、有考核。成都院每年度对各区域公司、分/子公司进行了安全考核,要求安全生产四个责任体系人员汇报履职情况,并进行考核打分,部门负责人对部门所有员工进行了考核评价。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3437, 819, 'value_text', '成都院依据《企业安全生产费用提取和使用管理办法》(财资〔2022〕136号)《中国电力建设集团(股份有限公司)安全生产费用管理办法(2024版)》(中电建股〔2024〕6号)要求,结合成都院管理实际,修编发布了《安全生产费用管理办法》(SQE.01C0206),明确了安全生产投入“足额提取、统筹使用、确保需要、综合监管”要求。成都院按规定比例提取安全生产费用,合理支付,过程中根据项目进度情况及时调整费用预算、足额投入,保证了安全生产投入的有效实施。 成都院建立了《安全生产费用使用汇总台账》,由安全质量环保部等相应业务归口管理部门对安全生产费用进行监管,并将安全投入纳入重大风险管控,规范了安全生产费用使用、审核、报销流程。成都院财务管理部按规定要求建立了安全生产费用使用台帐,做到分类管理、专款专用,保证了安全生产的需要。 成都院印发《关于下达2024年度业务预算的通知》(蓉设计经〔2024〕7号),明确了成都院2024年安全生产费用预算合计18245.00万元,经董事长何彦锋审批同意。 成都院总部安全质量环保部、各分/子公司在QHSE系统每月上报安全生产费用使用明细清单,与财务专项会计科目核对,建立电子台账,及时、完整;成都院统计台账显示,截至2024年7月22日,共使用安全生产费用8793.67万元,执行率48.2%。 成都院制定《2024年度上半年安全生产费用分析报告》,对年度安全生产费用总体情况、存在问题等进行了分析,针对投运分公司等个别分/子公司上半年安全费用预算完成率偏低等情况,提出了解决预算执行偏差的措施。 成都院在招标文件中明确安全费用管理要求,单独计列安全生产费用。2024年上半年成都院结算给分包单位安全生产费用7152.0508万元,及时、足额向分包单位支付安全生产费用。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3440, 820, 'value_text', '成都院安全生产工作坚持“安全第一、预防为主、综合治理”的方针,贯彻“幸福系于安全,安全源于责任”的理念。成都院制定并发布《企业文化理念手册》(COG.04C0101),将安全文化纳入了企业文化,倡导幸福系于安全、安全源于责任的安全价值观。 成都院党委书记、董事长何彦锋和总经理张世殊等领导和各二级单位负责人积极推进并参与企业安全文化建设,何彦锋2023年6月19日,深入福建漳州项目主讲了公司领导“安全公开课”。成都院积极策划实施2024年度“安全生产月活动”,组织学习贯彻习近平总书记关于安全生产的重要论述,采取线上线下结合的方式,组织开展了安全生产月启动仪式、在办公区张贴了“安全生产月”主题横幅及海报,摆放了“人人讲安全、个个会应急——畅通生命通道”“典型重特大事故案例剖析”展板,开展安全生产主题教育、安全竞赛、安全生产公开课、安全生产知识宣传、事故和灾害案例警示教育、应急演练等活动,切实达到以活动促工作、以活动促安全的目的,形成浓厚的安全生产氛围。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3443, 821, 'value_text', '成都院《识别和获取适用的安全生产法律法规标准规范管理办法》(SQE.01C0214),明确了安全生产法律法规规章及标准规范获取识别、评价与改进、更新、执行等管理要求,明确安全质量环保部是识别与获取适用的安全生产法律法规标准规范的归口管理部门。成都院发布《关于发布公司环境因素、职业健康安全风险清单以及合规性评价报告的通知》(安质〔2024〕72号),包含公司2024年适用的法律法规清单,成都院共识别获取适用职业健康安全法律28个、法规40个、国家标准72个、行业标准100个、地方规定116个,部门规章113个、境外法规127个等。成都院《2024年适用的法律法规清单》(安质〔2024〕72号)通过门户网站、OA流程系统和文件发文的方式逐级传达给相关从业人员。成都院购买了安全环保法律法规数据库和文本数据库,供各层级查询、收集、获取和更新。 成都院认真贯彻落实股份公司有关安全通知、会议等要求,各级领导对安全生产工作作出重要安排部署。党委书记、董事长何彦锋强调,安全管理是企业发展的基石,各岗位一岗双责,必须高度重视。各单位要根据自己的安全责任,加强安全管理和风险防控力度,强化员工的安全意识培训,提升全员防范和应急处理能力,坚决防范遏制各类事故的发生,并签发了《关于印发<成都院深入开展安全风险隐患专项整治工作方案>的通知》。在股份公司安全生产专题视频会议后,公司党委副书记、总经理张世殊立即组织会议,就贯彻落实会议精神提出要求,要求各单位要充分认识当前安全形势的严峻性,切实做好关键时间节点的安全工作,安排部署好股份公司八项重点工作举措。分管安全副总经理对安全生产及重大事故隐患排查整治多次做出指示批示,要求各单位认真组织学习近期安全文件、会议精神,认真组织开展教训汲取“四个一”活动,认真落实项目生产“七条红线”,并按计划开展隐患排查、安全督查等工作。在股份公司2024年安全生产委员会(扩大)会议后,公司相关领导就贯彻落实会议精神提出三点要求。 成都院共发布四批次现行有效安全生产制度清单,包含《职业健康安全运行控制程序》《安全生产管理规定》《突发事件应急管理办法》《安全生产责任制》等73个制度/程序,覆盖了成都院生产经营业务范围的安全生产与职业健康管理工作需要。成都院发布《关于对<安全生产费用管理办法><安全生产管理奖惩办法>征求意见的通知》(安质〔2023〕109号),2023年修订的6项制度发布前征求了工会、职能部门、各分子公司、项目部等人员意见,在公司2023年度安全生产委员会第二次会议上审议通过,并经时任总经理何彦锋批准后,以正式文件形式发布。成都院编制修订的安全管理制度,在成都院OA系统中发布,各部门、单位等均能获取;2024年3月14日,成都院安质环部组织专项培训,对修订后的HSE制度进行了宣贯,公司总部职能部门、分/子公司和项目部相关负责人共42人参加。 成都院发布《关于发布成都院现行有效安全操作规程的通知》(蓉设安质〔2022〕65号),其中包括77项水利工程作业人员安全操作规程,77项水利工程机械设备安全技术操作规程;发布实施《水文测验安全操作规程》《现场查勘和野外调查安全作业规程》等其它操作规程7项;《造槽机安全操作规程》“四新”操作规程1项。安全操作规程编制人员包括工程技术人员、安全管理人员、设备管理人员以及作业人员,并经时任总工余挺,分管安全副总经理鞠其凤审核,时任总经理郝元麟批准。现有有效安全操作规程文本可在公司OA门户进行查阅获取,能够及时发放到相关工作岗位,并组织进行宣贯培训。 成都院发布并实施了《安全文件和档案管理办法》(SQE.01C0231)《管理体系文件编制与评审程序》(COG.03B01),明确了安全生产与职业健康规章制度、操作规程等管理体系文件的编制、评审、发布、使用、修订、作废等管理流程和要求。成都院按勘测设计企业安全生产标准化评价标准8要素要求,建立了电子档案和纸质文档。成都院发布《关于开展2024年环境与职业健康安全法律法规合规性评价的通知》(安质〔2024〕72号),对公司现行法律法规、安全管理制度、操作规程等进行了评估;根据制度评审情况,成都院制定了《安全管理体系文件修编计划》,明确了修编文件名称,责任部门、责任人、计划完成时间等,共计划修编《安全生产管理规定》等13项安全管理制度,新编《应急救援队伍章程》等5项安全管理制度,目前正在修订过程中。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3446, 822, 'value_text', '1)教育培训管理 成都院制定并实施了《安全生产教育培训管理规定》(SQE.01C0203),明确人力资源部是公司安全生产教育培训工作归口管理部门,负责公司安全生产教育培训的实施及归口工作。 成都院制定《公司2024年安全生产与职业健康、节能能源与生态环境保护教育培训工作计划》,培训包括上级对企业领导人员和安全管理人员培训、注册类和特种作业类培训、新员工三级安全教育培训、应急救援队伍专项培训以及分包单位现场负责人及主要管理人员轮训等内容。计划由刘建冰核定、鞠其凤批准、何彦锋签发。成都院按计划开展了相关培训计划,及时做好安全教育培训记录和档案管理工作,并对2024年已经开展的培训项目,进行了培训效果评价。 2)人员教育培训 成都院主要负责人及安全管理人员均按要求参加培训并取得资格证书,如公司董事长何彦锋、总经理张世殊均取得安全生产考核合格证(A证),二级单位负责人雷军、刘兴强等取得安全生产考核合格证(B证),安全总监向林、安质环部主任刘建冰、安质环部副主任邱广东、专职安全管理人员李豆豆、黄凡等取得安全生产考核合格证(C证)等。成都院2024年已举办的住建系统安全管理“三类人员”复训,满足再培训学时等要求。 成都院2024年安全生产与职业健康、节约能源与生态环境保护教育培训工作计划包括了从业人员培训或培训考核上岗相关培训,如:特种作业人员资质培训、住建和水利系统“三类人员”资质取证和延期教育培训、新员工安全教育培训和各级负责人安全履职能力培训,复训学时满足要求。 成都院对2024年新员工开展了三级安全教育培训,参训234人,培训学时满足要求,有培训课件、试卷和成绩记录、培训效果评价,培训考核结果。成都院《安全生产教育培训管理规定》(SQE.01C0203)明确了转换岗人员、变换工种人员的安全教育培训要求。成都院《安全生产教育培训管理规定》(SQE.01C0203)明确了采用新技术、新工艺、新材料、新装备、新流程时的安全教育培训要求;经现场询问,成都院查评期内无新工艺、新技术、新材料、新设备设施投入使用情况。成都院特种作业建筑电工(15人)、爆破作业人员(23人)均在有效期内持证上岗,定期复审换证。2024年5月,公司应急救援队和公司西藏区域应急救援队共计58人参加了应急救援员(五级)国家职业资格鉴定培训。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3449, 823, 'value_text', '成都院发布实施了《设备物资管理办法》(MEM.01C0001),明确了设备配置标准、采购、运行、维修、搬迁拆除、报废报损、保密、监督检查等方面的管理流程和管理要求。成都院设备物资管理实行以公司总部为领导,以各分子公司为管理中心,以基层单位为运行主体的设备物资管理体系,公司综合事务部是公司设备物资及固定资产设备的归口管理部门。成都院发布实施了《特种设备管理办法》(MEM.01C0002),明确了特种设备的管理流程和管理要求,公司综合事务部负责公司特种设备管理制度的建立和完善,对各单位特种设备管理的监督、检查和考核等工作。 成都院QHSE信息系统中设备设施管理模块,建立了《设备设施台账》和《特种设备及操作人员管理台账》,特种设备操作人员均持有特种设备安全管理和作业人员证。2024年成都院组织开展了设备物资专项安全检查,所检查的施工现场没有发现设备设施布置不符合安全技术要求的情况,没有发现使用临时改装的设备设施的情况。 成都院QHSE管理系统中公司自有特种设备45台套,分包商在用特种设备105台套,无甲供设备。台账信息包含特种设备使用单位、编号、类别、名称、特种使用证号、特种注册代码、规格型号、生产厂家等方面信息。成都院开展了公司2024年设备物资安全管理整治活动,成立了以总经理为组长的专项工作领导小组,明确了工作计划、工作重点,并于2024年2-5月开展了设备物资安全管理自查自纠和特种设备安全培训工作,对所属各分子公司和项目部的设备物资安全管理制度执行情况、特种设备管理及操作规程执行情况、危险物资管理情况等方面工作进行了检查,对发现的175个问题隐患及时进行了整改闭合。 成都院适时组织对公司所属各生产经营场所自有设备设施、分包商自带设备的使用和管理情况进行监督检查。特种设备办理了使用登记,使用登记标志张贴于特种设备的显著位置。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3452, 824, 'value_text', '成都院发布实施了《作业安全管理办法》(SQE.01C0216),明确了勘测、设计、总承包、咨询、监理、科研等项目应根据作业性质、作业项目环境等,编制作业方案或施工组织方案,经审批后开展作业。作业方案或施工组织方案都制定安全生产目标,应对可能产生的环境影响、职业健康危害和安全方面进行策划和防护;对汛期作业、交叉作业、季节施工等影响生产安全的因素进行评审,作出合理的工序、工期安排;对作业过程中的重点部位和关键环节,提出安全措施和防护要求。 成都院制定了《现场查勘和野外调查安全作业规程》(SQE.01C0245)《山地作业安全操作规程》(SQE.01C0247)等7个专业操作规程,针对不同自然环境如沼泽、沙漠、荒漠、岩溶发育地区及旧矿、老窿地区作业等环境,提出了适应环境的安全管理规定。成都院制定了《公司2024年环境因素清单—项目环境因素清单》,其中包含地震、地面坍塌、泥石流、滑坡等地质灾害和森林草原火灾、台风、龙卷风、冰雹等气象灾害,并针对上述灾害制定了明确的应对措施。成都院建立安全管理微信工作群,自然灾害预警信息及时在工作群发布。 成都院发布实施了《文明施工管理规定》(SQE.01C0234)《作业安全管理办法》(SQE.01C0216),明确了现场材料与设备管理、现场设施管理、环境卫生管理及环境保护相关规定。要求作业场所应保持整洁,做到“工完、料尽、场地清”,现场材料、设备按规定的地点堆放整齐;临时建筑设施符合施工组织设计的规定,作业场区的安全文明施工图牌、各类警示标志等醒目、齐全。成都院定期对生产现场与文明施工、生产现场安全防护等进行了检查,提出问题并及时整改闭合。 成都院项目管理部为公司施工技术管理机构,配备了5名管理人员,成都院编制并发布了《建设业务施工技术管理办法》(DBM.05C0602),明确了施工技术方案编制、评审、审批管理流程、管理职责与要求。危险性较大的分部分项工程专项施工方案审批参照国家、行业有关法律法规要求执行,因业主、上级单位有特殊要求的报公司总部履行审批程序。 成都院《劳动防护用品管理细则》(SQE.02C0004),明确了劳动防护用品种类、配备标准,发放、使用、更新与报废等管理要求。公司、分/子公司及各项目部根据现场作业的需求及时为从业人员配备必要的职业健康安全防护设施、器具及劳动保护用品,并保证质量。对有特殊工种着装要求的员工,配置符合岗位作业防护要求的特种防护用品。严防误用或使用不符合安全要求的护具,严禁违章使用或擅自代用,满足作业人员管理要求。成都院零星劳保防护用品采购、验收、发放记录由安全环保部负责,建立了发放台账,包括领用单位、物品名称、事由、数量、领用人、时间、发放人等。 成都院发布实施了《作业现场人员管理细则》(SQE.01C0229),对人员进出场管理、安全教育培训、个体防护、一般规定、特殊作业安全管理、紧急避险等进行了规定。作业前对作业人员的上岗资格、健康情况、操作技能(应知应会)等进行检查,满足作业人员管理要求。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3455, 825, 'value_text', '成都院发布实施了《班组安全活动管理规定》(SQE.01C0253),要求班组建设以岗位达标为依托,开展“学习国家和政府的有关安全生产法律法规”“定期进行安全知识的学习培训”“讨论分析典型事故案例”“进行生产异常情况紧急处理能力的培训和演练”“岗位安全技术练兵、比武活动”“查隐患、反习惯性违章”等活动。 成都院2024年4月16日以《关于印发《成都院安全生产治本攻坚三年行动实施方案(2024—2026年)》的通知》(蓉设安质〔2024〕23号),对班组安全建设及岗位达标工作进行了部署安排,明确组织开展勘测外业、科研实验、总承包(施工)作业、电(水)厂运营维护等操作类岗位人员岗位达标活动。成都铁路港商品展示交易中心EPC总承包项目结合现场施工作业人员情况,组织开展了安全知识培训工作,对现场入场人员教育时,开展了安全交底和危险源识别。项目在施工期间,督促各班组开展班前教育工作,在班前会上强调用电安全要求、机械伤害预防等。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3458, 826, 'value_text', '成都院发布实施《供应商管理办法》(DBM02C0109),明确了分包商、承包商有关管理职责、工作内容、管理流程等方面内容。安全质量环保部负责提出制度修改意见和参加分包商有关安全环保方面不良行为处理。成都院《相关方管理规定》明确了专业分包和劳务分包、施工分包单位准入、分包动态管理、动态管理、考核评价与责任追究等,包含相关方的资质预审、选择、作业人员培训、作业过程检查监督、提供的产品和服务、绩效评估、续用及退出机制等相关内容。2024年5月20日,公司发布2023年度供应商评价结果及合格供应商名单。 成都院对承包商、供应商的资质条件进行审查,符合国家有关企业资质管理规定和行业有关工程分包、采购等管理规定。成都院建立了合格供方库,包括工程施工类、设备物资类和服务类,2023年度被评价为不合格供应商共有2家,已按照公司供应商管理办法列入了黑名单。 成都院按规定与分包商签订工程分包合同和安全生产协议,如成都院《汉源县城流沙河生态修复工程》(合同编号:HYSTBSG-202301),单独签订了安全生产协议,协议包括安全目标、双方责任和义务,有关安全生产与职业健康、能源节约与生态环境保护内容齐全。成都院对相关方机构设置、教育培训等工作进行了检查,审查了承包商编制的安全作业(施工)方案,安全技术交底记录等,督促承包商识别风险、采取措施、排查治理隐患。 成都院2024年4月24日组织开展了2023年度供应商履约评价工作,对供应商产品、服务及安全管理情况进行了综合评价,共评价供应商1225家,并以《关于发布公司“2023年度供应商评价报告”和“2023年度合格供应商名单”的通知》进行了发布,将合格供应商录入到成都院“采购管理系统”,统一管理。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3461, 827, 'value_text', '成都院依据《中华人民共和国职业病防治法》《工作场所职业卫生监督管理规定》等国家法律法规和上级有关规定,发布实施了《职业健康管理办法》(SQE.02C0001),管理制度内容涵盖工作目标、职责与权限、工作要求、职业危害告知与警示、职业危害申报等内容,成都院建立《职业病危害因素接触人员清单》,共计450人,主要职业病危害因素包含粉尘、噪声、高原,重点关注人员350名。成都院硬梁包项目部建立了《硬梁包项目部设代处人员职业健康检查档案》《硬梁包项目部职业病危害因素接触人员清单》《硬梁包项目部职业健康危害因素清单及控制措施》,职业健康管理符合要求。 成都院发布《关于发布公司2024年环境因素、职业健康安全风险清单以及合规性评价报告的通知》(安质〔2024〕72号),评价结论“公司收集的法律法规体系逐步完善,现行管理措施或管理方案与适用法律法规及有关要求一致,公司各单位以及员工均能按照相应的法律法规和管理措施要求开展各项活动,未发生职业健康安全事故,无违法违规现象,无单位和个人投诉,安全生产工作成效显著。” 成都院签订员工劳动合同时,合同中包含劳动保护、劳动条件和职业危害告知与防护条款。成都院在作业现场按规定要求设置职业危害因素告知卡,如成都院九水公司制定了职业病危害告知卡,对噪声危害进行了公示,公示内容满足要求;YX勘探项目部在PD405洞口设置了粉尘危害告知牌,在电焊作业加工区设置了粉尘危害和弧光危害告知牌;省勘院在平硐设置了粉尘、噪声危害告知牌。2024年4月29日,成都院开展了职业健康培训,对劳动者进行职业危害宣传和警示教育,共75人参加。 成都院按规定要求进行职业病危害申报,并为从业人员提供符合职业健康要求的工作环境和条件,如成都院天源公司职业病危害检测数据显示,现场噪声检测数据满足要求。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3464, 828, 'value_text', '成都院发布实施《安全风险管控管理办法》(SQE.01B05),规定了公司、分子公司、各管理部门、各项目部、电厂、污水厂安全风险辨识、评估、控制的职责,要求应及时组织开展全方位、全过程的安全风险辨识工作,做到系统、全面、无遗漏,并持续更新完善。 成都院按规定要求开展了安全风险辨识工作,并发布《关于发布公司2024年环境因素、职业健康安全风险清单以及合规性评价报告的通知》(安质〔2024〕72号),其中包含《公司2024年危险源辨识、职业健康安全风险清单》,辨识范围包含室内办公活动、境外业务、公共卫生、综合管理、勘测设计咨询项目、建设项目、投资与运营项目等,能够覆盖成都院所有生产经营领域,辨识范围全面,然后运用风险矩阵分析法对所有辨识出的风险进行了评价,确定安全风险等级。安全风险等级分为重大、较大、一般、低四级,对应颜色标示为红、橙、黄、蓝。成都院对不同等级的风险均制定了控制措施,通过对风险状态(新增、持续、恶化、减弱、消除)的判断,实现了差异化动态管理。同时,各项目部、电厂、污水厂每月进行风险动态评估,经安全月度会议审核通过后,在重点部位张贴发布,告知从业人员。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3467, 829, 'value_text', '成都院发布实施《重大危险源及危险化学品管理办法》(SQE.01C0218),明确了管理职责与权限,包括重大危险源分级、辨识、评价等和危险化学品采购、运输、储存、使用等的管理要求。成都院依据《危险化学品重大危险源辨识》(GB18218-2018)标准,对公司本部、阿尼桥炸药库、龙泉污水处理厂等处存在的盐酸、硫酸、硝酸、乙醇、炸药和对公司各项目现场存在的汽油、柴油等危险化学品进行了全面的危险源辨识,判定公司不存在重大危险源。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3470, 830, 'value_text', '成都院发布实施《生产安全事故隐患排查治理管理办法》(SQE.01C0219),明确各级单位隐患排查、治理和风险防控的责任部门和主要负责人,明确了各级管理人员的责任,以及隐患分级、分类标准、排查方法、范围、治理、举报奖励等管理要求,实现隐患排查、登记、整改、评价、销账、报告的闭环管理。成都院通过QHSE系统建立并推行了安全隐患举报平台。 成都院发布实施《关于开展2024年安全生产与职业健康、节约能源与生态环境保护检查考核的通知》(蓉设安质〔2024〕19号),文件由公司主要负责人何彦锋签发,其中包括公司2024年度隐患排查治理工作实施方案,明确了2024年度隐患排查治理工作的组织领导、主要任务、进度安排和工作要求。 2024年1月到6月成都院组织各类检查和隐患排查,共排查225条隐患,均已整改验收完成,形成闭环。如针对2024年6月26日至28日《成都院安全环保专项督导检查报告》中,对漳州总包项目部所指出的问题与不足,项目部2024年7月12日提交《关于漳州高新区绿色发展生态治理项目工程总承包(EPC)项目部成都院HSE检查问题整改情况的报告》,确认所有问题均已完成整改,并附证明图片;整改报告经建设分公司安环部主任杨先刚、安全总监王丰签署同意后,由成都院安全质量环保部邱广东签署同意。 成都院QHSE系统中风险隐患模块,共包含1049条隐患。隐患台账包含归属部门、隐患描述、隐患级别、隐患类别、排查日期、检查对象、整改期限、整改销号情况等,对隐患进行动态统计,并通过QHSE系统中风险隐患模块向从业人员通报,此外还在每年的年度安全工作报告中进行通报。同时,成都院每月通过股份公司HSE系统上报安全隐患排查治理月报表,对治理情况进行统计分析。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3473, 831, 'value_text', '成都院发布实施《安全生产变更管理规定》(SQE.01C0252),明确各单位在组织机构、人员、施工工艺、施工技术、设备设施、作业过程及环境发生变化时,应制定变更计划,对变更过程及变更所产生的风险和隐患进行辨识、分析和评价,根据变更内容制定相应方案及措施,并对相关单位和人员进行交底。特别明确了设计业务应严格执行公司设计变更管理制度规定的审批、验收等控制程序。如《亭子口灌区一期工程口龙充水渠营業沧隆洞出口~文子垭隧洞进口暗渠段设计变更》对设计变更的影响从施工组织、施工周期、工程占地、工程投资等方面进行了评价,文件由王丽婷等编写,梁清樾等校核,郭业水等审查,翟配松核定,评审结论:设计变更后能够保证工程安全和施工安全要求。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3476, 832, 'value_text', '成都院发布实施《安全预测预警管理规定》(SQE.01C0258),明确了风险预测预警防控对象、风险预测预警防控的范围、风险预测预警防控内容、风险预测预警防控工作程序和方式。安全质量环保部是安全预测预警的责任部门,组织公司的安全预测预警和风险控制工作;各分/子公司负责组织本单位的安全预测预警和风险管控工作,督促项目部落实安全预测预警和风险管控措施落实。 成都院建立了预警信息发布机制,及时进行预警信息发布,并提出应对措施和工作要求。分管安全领导鞠其凤2024年5月11日在成都院安全环保管理平台(微信群)中发布的四川暴雨蓝色预警,指出公司在川内业务众多,尤其是川西区域。请各单位高度关注雨季安全,包括但不限于:项目工地安全、营地安全、出行交通安全,项目现场、技术踏勘及项目检查,切实做好相关预案及防范措施,确保人员安全、交通安全、工程安全。各分/子公司安全员及时回复。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3479, 833, 'value_text', '成都院发布《关于公司跨部门议事协调机构设置及有关事项的通知》(蓉设党字〔2023〕55号),明确公司应急领导工作小组人员组成,党委书记、董事长何彦锋任公司应急领导小组组长。成都院按有关规定开展了安全风险评估和应急资源调查工作,编制了《安全风险评估报告》《应急资源调查报告》等文件,建立了成都院应急预案体系,包括《突发事件综合应急预案》《极端天气应急预案》等15个专项应急预案、4项总部的现场处置方案《中毒窒息现场处置方案》等24项现场处置方案,应急预案体系覆盖了公司业务范围内可能发生的事故类型,并与股份公司的应急预案相衔接。成都院发布《关于印发<安全风险管控管理办法>等4项管理体系文件的通知》(蓉设安质〔2021〕608号),成都院应急预案汇编经时任董事长黄河签发,并向中国股份公司安环部和成都市温江区应急管理局进行了备案。 成都院发布《关于调整公司应急救援队队员的通知》(蓉设安质〔2022〕61号),建立了61人组成的应急救援队;其应急救援队伍A队33人,主要承担地震、泥石流、洪水、山体滑坡(崩塌)、堰塞湖等自然灾害应急抢险救灾工作;应急救援队伍B队28人,主要承担交通、消防、设备、食品安全、人身伤害事故、环境事件等突发事件应急抢险救灾工作。 成都院建立了安全生产第一责任人、分管安全负责人、工程技术岗、管理岗、应急办公室负责人应急处置卡等,包括了事故类型、应急职责、处置程序、应急措施、紧急联系人及联系方式,并张贴在工作现场。 成都院根据应急预案应急物资装备清单要求,建立了应急物资清单,开发使用“后勤保障资源一体化共享平台”,建立了7个应急物资仓库台账,明确了物资名称、规格型号、库存状态、库存数量等,在平台中实现动态管理。应急物资均按要求进行了定期维护保养,形成了保养记录。 成都院组织开展应急预案知识、技能培训,并对培训效果评估;成都院2024年4月-5月组织开展了应急救援员取证培训,培训采取线上线下相结合方式,公司应急救援队成员参加了培训,培训内容包括应急救援知识,应急抢险技能等。成都院制定了2024年应急演练工作计划,并根据本单位风险防控重点和演练计划开展应急演练,如2024年6月25日组织开展了地震及地质灾害综合演练,2023年12月15日开展了火灾事故应急演练,均为实战演练。 应急演练结束后,均对演练情况进行了评估,针对问题,逐条制定了改进措施。成都院2023年12月向股份公司提交了《成都院2023年应急管理工作总结》,总结了安全生产月应急演练专题行活动开展情况、应急管理制度及应急预案体系建设情况、应急机构建设情况、应急能力建设情况、应急教育培训宣传情况、应急演练情况,指出了工作中存在的问题及应对措施。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3482, 834, 'value_text', '成都院发布实施《生产安全事故管理办法》(SQE.01C0217),明确了事故报告的时限、程序、方法、内容等,明确了安全生产和突发事件安全信息管理要求、信息报送的责任人及报送程序等,要求各单位严格按照有关规定报告生产安全事故,做到准确、及时和完整。 评审期内,成都院无生产安全事故发生。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3485, 835, 'value_text', '成都院印发《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安质〔2024〕20号),文件由党委书记、董事长何彦锋进行了签批发布,对成都院2024年安全生产标准化持续深化工作进行了部署安排,明确了总体思路、组织领导、工作内容(工作依据、工作范围、工作步骤和程序)和工作要求等。 成都院2024年9月18日发布《关于发布<中国电建集团成都勘测设计研究院有限公司2024年度安全生产标准化自评报告>的通知》(蓉设安质〔2024〕56号),将自评结果在OA系统公告各部门单位、员工,并要求对照报告内容对本单位安全生产工作进行再梳理,对自评发现的问题形成整改闭合。 成都院发布实施《安全生产标准化自评管理办法》(SQE.01C0223),将安全生产标准化自评和按考评结果改进、考评合格量化指标作为主要绩效指标;成都院根据《安全风险抵押金管理办法》,在公司2024年度安全生产委员会第一次会议上,审定了公司2024年度安全生产风险抵押金返还方案;根据公司《安全生产管理奖惩办法》,经考核评比,成都院印发《关于表彰2023年度公司安全生产先进单位、集体和个人的决定》(蓉设安质〔2024〕13号),对在2023年度安全环保工作中取得突出成绩的新能源工程分公司等6家单位、国际工程分公司综合管理部等18个集体、李志勇等33名员工予以表彰奖励。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3488, 836, 'value_text', '成都院于2015年4月7日获得国家能源局安全生产标准化一级企业达标证书,取得证书后,继续深入开展安全生产标准化建设工作,2019年公司顺利通过电力勘测设计企业一级安全生产标准化评审,于2019年12月9日获得电力安全生产标准化一级企业证书(证书编号:ZGDIDBOY-083)。 2019年以来,成都院按照股份公司《安全生产标准化建设管理办法》《电力勘测设计企业安全生产标准化评级标准》要求,主动地、有目的地、有策划地持续深入开展安全生产标准化自查工作。2024年3月12日,党委书记、董事长何彦锋批准了《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安质〔2024〕20号),方案明确了工作目标、组织机构和职责、工作依据、工作程序、时间节点安排、主要工作内容及成果等;成都院按《成都院2024年度安全生产标准化建设暨安全环保提升专项行动》要求,开展了安全生产标准化工作。主要负责人主持召开成都院第一次安委会会议,公司全体在蓉领导出席会议,在随后召开的年度安全生产工作会上,确定了将安全生产标准化自评工作列为年度七项重点工作之一,提出了“以安全生产标准化复审年为契机,将安全管理评价与标准化工作相结合,按照“帮扶、指导、查评”相结合的思路,开展点对点的现场指导和帮扶,保持电力安全生产标准化一级达标水平”。 2024年度自评工作推进过程中,公司党政领导班子多次在党委会、董办会、总办会上听取公司安全生产工作开展情况汇报和安全生产标准化实施过程中的问题反馈,并提出相关安全生产工作要求,全面推动安全生产标准化各项工作落实落地。成都院坚持过程管控、坚持问题导向,将安全生产标准化不断向项目现场延伸深化,通过项目自查、二级单位自查、成都院自查及抽查的形式,进行了现场检查、制度规程及安全管理内业资料检查。自查情况显示,成都院本部各部门、子公司、项目部均能够按体系要求,将体系的各项管理制度、措施贯彻落实到整个企业安全生产管理中去,使体系标准的各要素均能体现到日常安全生产工作中,切实实现安全生产标准化在项目现场的有效落地,整体提高了成都院现场安全管理水平和工作效率;成都院安全生产各项工作符合国家、行业及地方现行有关的法律法规和标准规范的要求,符合行业《电力勘测设计企业安全生产标准化评级标准》要求。 公司严格遵照“不安全不生产,先安全后生产”原则开展安全管理工作。党委书记、董事长何彦锋多次强调,安全管理是企业发展的基石,各岗位一岗双责,必须高度重视。各单位要根据自己的安全责任,加强安全管理和风险防控力度,强化员工的安全意识培训,提升全员防范和应急处理能力,坚决防范遏制各类事故的发生。公司总经理张世殊组织召开会议,要求各单位要充分认识当前安全形势的严峻性,切实做好关键时间节点的安全工作,公司要及时制定、印发工作方案,安排部署好股份公司八项重点工作举措,认真组织开展教训汲取“四个一”活动,认真落实项目生产“七条红线”。根据公司领导安排部署,公司印发了《关于印发<成都院深入开展安全风险隐患专项整治工作方案>的通知》(蓉设安质〔2024〕52号)《关于进一步加强四季度安全生产管理暨强化重大事故隐患排查治理工作的通知》(安质〔2024〕125号),通知部署了“全面整治重大事故隐患,强化重点环节安全管控”事项,要求各单位要结合正在开展的深入开展安全风险隐患专项整治工作,树立“隐患就是事故”理念,进一步严格落实股份公司安全生产“十项重点工作”检查工作。公司组织内部专家编制印发了《管生产必须管安全,不安全不生产实施细则》《成都院班组生产组织及安全管理实施细则》等对“不安全不生产”进一步细化了工作内容、考核奖惩等。 截至目前,成都院安全生产标准化运行实施中未出现突出问题。2024年上半年,成都院根据绩效评价结果,对有关单位和岗位兑现奖惩,标准化达标评级标准作为考核部门和项目部的主要依据,能够按照标准化要求持续改进,不断提升。成都院2022年、2023年连续两年荣获股份公司安全生产先进单位。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3491, 837, 'value_text', '成都院高度重视安全生产标准化工作,将安全生产标准化与企业安全生产治本攻坚三年行动、深入开展风险隐患专项整治行动等重点工作相结合,形成安全管理创新和管理亮点如下: 1)思想引领、高位推动,不断夯实安全生产责任体系 成都院始终坚持以习近平新时代中国特色社会主义思想为指导,时刻将总书记的重要指示批示精神,作为安全生产工作的根本遵循,视为一以贯之的首要政治责任和使命任务。持续抓好思想引领,主要领导亲自带队开展安全督导、参加应急实战演练、组织安全警示教育、赴长沙参加安全专题培训、与四川能源监管办共商能源行业安全高质量发展,亲自部署复工复产、防汛抢险、应急处置等重点工作。组织各单位主要责任人多次开展“安全生产公开课”等活动、专家引导解析学习与网络培训、观看警示教育片。高位推动安全工作,多次召开公司级安全生产会议,研究部署复工复产、专项整治、防洪度汛、森林防火等专项工作,为防控重大风险,全面做好安全生产工作提供了根本保障。持续加强安全队伍能力建设,首次开展安监队伍专题党课,组织开展分/子公司安全总监述职工作。 2)治理隐患、防控风险,扎实推进双重预防体制机制建设 成都院始终坚守“不安全不生产”的基本原则,以安全风险TOP10管控和专项整治为抓手,多措并举抓好贯彻落实。分层级、分领域、分专业开展安全风险TOP10管控,通过每月动态监管、制定安全监管明白卡、开发信息化管理平台、推广隐患举报平台、试行安全积分超市等方式,严控12大类、84项重大/较大安全风险,进一步夯实了安全风险管控基础。针对新、特、难等类型项目构建标准化管理体系文件,编制《重点业务安全风险管控指导书(试行)》《设计牵头的联合体EPC总承包项目安全管理工作指导书(试行)》,量化各类项目安全风险值,建立严查严管隐患清单,实现安全风险有效管控。每年成立驻点帮扶指导工作小组,派出安全管理和工程技术专家百余人次,前往重点风险项目开展现场指导,实现每季度公司安全风险十大项目检查指导覆盖率100%,形成帮扶成果供所有项目分享使用。 3)教育引路,文化引领,持续打造富有特色的企业安全文化 成都院高度重视安全文化建设。2023年,组织开展了首届安全生产管理论坛和安全风险TOP10管控劳动竞赛,设置外部安全专家大讲堂、安全生产标准化提升等五个主题分论坛,聚焦“水能砂城数”业务方向,充分交流先进安全管理经验,激发公司及各项目安全管理新思想、新理念。16支队伍、403个单位/项目、4500余人参加竞赛活动,在“比学赶超”的氛围中掀起了公司安全文化发展新热潮。以开展“安全生产月”“全国防灾减灾周”等活动为契机,组织开展了主题宣讲、警示教育、安全培训、应急演练等活动,通过安全名词你比我猜、安全隐患大家找、安全谜语竞猜、演讲、小品、相声、快板、情景剧、重点业务作业指导书等方式,积极构建全员参与的安全文化氛围。2024年,公司组织开展 “安全生产月”暨“安康杯”竞赛,竞赛以习近平总书记关于安全生产重要论述、安全生产治本攻坚三年行动、重大事故隐患判定标准、安全工作“十问”等为重点,公司各单位积极响应、精心组织、广泛宣传,经过两周的激烈角逐,累计传播知识点10万余条,访问量3.2万余次,参赛量1.3万余人次,参赛人数2236人,在公司上下、项目现场掀起了全员学习安全知识的文化新热潮。 4)勇于担当、攻坚克难,全力做好应急队伍建设及抢险救灾工作 成都院勇担社会责任,不断提高自身应急管理能力,全力以赴防灾减灾救灾,彰显央企责任担当。应急救援队成立以来,成都院先后派出技术专家参加丹巴关州水电站水淹厂房事故抢险、芦山地震应急抢险、贵州防汛抢险、泸定地震抢险救灾、京津冀洪水灾害损失评估、金阳8·21灾害现场调查等百余次专家技术支持工作,收获应急管理部、四川省地质灾害指挥部办公室、四川减灾委办公室及业主单位数十封感谢信。2023年,成都院第一时间协调、第一时间安排应急救援队员和相关技术专家先后8次参加防灾减灾救灾工作,如5月11日紧急派遣地质专家王勇赶赴松潘县支援滑坡抢险,协调派遣3名技术专家协助指导四川省防汛工作等。2024年,公司多次派遣专家参加相关抢险救灾工作,响应地方政府要求参与抢险救灾工作。应急管理部先后两次调研公司应急管理工作,成功获批应急管理部工程救援应急勘测队,并获3190万经费支持。公司积极创建西藏区域应急救援队,将集团应急专家队伍建设推上新高度。 5)融会拓展,首次实现国家水利行业和电力行业安全生产标准化一级双达标 除电力勘测设计企业安全生产标准化外,公司积极根据业务拓展打造其他业务板块安全生产标准化建设,将电力和水利标准化有效融合,进一步推动公司安全生产标准化走深走实。根据公司水利业务高质量发展需要,2024年初,公司启动水利水电施工企业安全标准化创建事宜。面对电力勘测设计和水利水电施工企业标准差异大、贯标时间短、多项前置条件亟待解决、建设项目与施工项目内业现场管控差异大等难题,公司详细拆分了实施方案和工作计划,划定149项工作任务,安排专人逐项跟踪落实,建立了“周例会、周通报”制度,累计召开了推进会十余次;通过“台账化管理、挂表式作战”的模式,坚持一周一调度,每月见成效;公司紧急组织开展安责险购买、施工项目职业危害在线申报、设备设施介入式管理、现场水利水电安全标准化工地打造等系列工作,集中优势资源,投入安全专家40余人,前往项目20余次帮扶督导建立标准化体系。公司组织总部各部门、建设分公司亭子口项目部、城乡分公司石棉县下坪项目部、二滩国际横山项目部多次以高分的成绩通过线上资料评审、交叉技术核查、答辩汇报、水利部现场核查等各类评审工作,最终成功摘得硕果。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3494, 838, 'value_text', '为认真贯彻落实《关于印发<中国电力建设股份有限公司安全生产标准化建设管理办法(2019年版)>的通知》(中电建股〔2019〕122号)和《关于印发<中国电力建设集团(股份)有限公司2024年安全生产与职业健康、节约能源与生态环境保护工作要点>的通知》(中电建股安环〔2024〕6号)等相关文件要求,成都院发布了《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安质〔2024〕20号),对安全生产标准化自查评和复审工作进行布置和安排,并按照方案的要求有序组织和实施。成都院2024年安全生产标准化自查工作分为以下五个阶段进行: 1)前期策划 成都院及各二级生产部门、项目部逐级成立2024年度安全生产标准化自评工作领导机构、工作机构,结合各自业务实际,组织策划编制并发布各级年度自评工作实施方案,做好自评职责分工及宣传动员工作。 各二级生产部门及下辖机构结合2023年度安全生产标准化自评报告及安全检查情况,在2024年度工作部署策划和实施过程中,举一反三,系统改进,严格按照标准规范要求,规范开展各项工作,防止同类问题重复出现。 2)专题培训 成都院邀请外部专家,组织各分子公司、项目部安全管理人员参加安全标准化复审专题培训暨启动会,进一步明确复审工作内容、工作要求及工作流程,增强各单位开展安全生产标准化复审工作的针对性和有效性。 3)自查自纠阶段 成都院各单位坚持“全面覆盖、分级实施、注重实效、持续改进”的原则,通过自我检查、自我纠正、自我完善,扎实有效开展年度安全生产标准化各项自评工作,构建安全生产绩效持续改进的长效机制。 成都院安排部署各部门开展安全生产标准化自查自纠工作,并对各部门编制和提交自评报告提出具体工作要求。组织对各单位编制和提交的自评报告进行审核,并以正式通知进行公示。抽查各分子公司、项目部自评情况,编制公司2024年安全生产标准化自评报告,并督促问题所属单位按期整改完毕。 各分/子公司发布通知,对所属项目部工作开展情况进行检查、指导,开展本部自评。并规划好项目选点,协助公司组织专家对项目进行咨询、自查评。组织对所属项目自查评报告进行评审、打分、排名、通报,并提交查评过程中发现的问题整改闭环资料。在本部自查、项目检查和报告评审的基础上,按期形成自查评报告并提交公司。 工期半年以上的在建项目按照上级要求及本单位自评工作方案部署,开展安全生产标准化自查自纠工作,编制并向部门提交项目部自评报告。 4)内审及整改阶段 公司级抽查:公司委托第三方咨询机构,按照股份公司有关要求抽取7个不同业务类型的项目现场检查项目部,指导现场自评工作,并对项目部自评报告的真实性、完整性、符合性独立开展现场审核,审核结果纳入对部门自评工作的评价。 分/子公司级抽查:按不低于部门项目总数50%的比例,抽检所辖项目现场的安全生产标准化工作开展情况。组织召开专题评审会议,对所辖项目和下辖机构的自评报告进行评审。各分/子公司由部门分管安全副总/安全总监主持会议,评审排名、打分,评审意见等结果在部门内正式通报。 成都院各级单位针对2024年现场评审过程中发现的问题进行整改,提出整改措施,明确整改时间和责任人,并举一反三,持续改进安全生产标准化建设工作 5)报告撰写 成都院对自评发现问题的整改闭合情况进行验证,对公司安全生产标准化的实施情况进行绩效评定,验证各项安全生产制度措施的适宜性、充分性和有效性,检查安全生产目标、指标的完成情况,提出改进意见。根据专家查评、整改及绩效评定情况,编制发布成都院2024年度安全生产标准化自评报告。 从审核总体情况来看,各单位基本能认真贯彻执行成都院关于安全生产的各项管理要求,积极推进安全生产标准化建设自查工作。各二级单位及时提交了自查工作报告,自查范围涵盖了各单位本部及所属在建项目,自查内容覆盖范围全面。 成都院根据各二级生产单位自评报告审核情况,结合安全环保部抽查各二级生产单位、项目部安全生产标准化工作情况,编制成都院2024年度安全生产标准化自评报告。 6)持续改进 公司根据自评结果和问题情况,组织各单位整改,并闭环验证。针对存在的共性问题,进一步制定针对性安全管控措施,将安全管理要求和力度层层加强。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3497, 841, 'value_text', '2024年7月13日至2024年10月17日,安源公司分别成立评审组,对成都院分批次开展了安全生产标准化达标评级现场评审工作。对照《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》,对8个核心要素进行了评审,并针对评审过程中发现的问题提出了整改意见,指导企业整改落实。 现场评审过程如下: 1)评审组内部工作会议:评审组根据项目进度分批次对成都院进行了复审,分别在4个抽查的项目、2个分公司和成都院本部召开内部工作会议,学习评审工作方案、评审的组织体系和分工。 2)现场评审:评审组依据《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》,按照规定的程序和要求,开展成都院本部、设计分公司、建设分公司、云阳监理项目、漳州总包项目、大邑地勘项目、双江口设计项目资料及现场评审。通过查阅企业安全文件和资料,现场检查设备设施、作业安全等,对成都院及其所属分公司、项目部安全生产标准化实施情况进行实地检查验证,确保现场评审的准确性和真实性。 具体评审时间如下: 2024年7月13日~15日,由专家葛学福、余正坚、周建胜对漳州总包监理项目进行现场评审。 2024年7月16日~18日,由专家葛学福、余正坚、周建胜对云阳监理项目进行现场评审。 2024年10月9日~10日,由专家余正坚、苏经仪、赵泓对双江口设计项目进行现场评审。 2024年10月12日~13日,由专家余正坚、苏经仪、赵泓对大邑地勘项目进行现场评审。 2024年10月14日~15日,由专家余正坚、苏经仪、周建胜、赵泓对建设分公司、设计分公司进行现场评审。 2024年10月16日~17日,由专家葛学福、余正坚、苏经仪、周建胜、赵泓对成都院本部进行现场评审。 3)评审组专家分析会:评审组召开评审工作沟通会,就评审工作进展情况、现场评审中发现的问题、适用的法规制度等情况进行充分的沟通交流,统一意见,形成共识。 4)末次会议:2024年10月17日上10:30~12:00,在成都院本部第一会议室召开了末次会议,评审组成员,成都院相关领导,党委/群团工作部、公司/董事会办公室、纪委/巡查工作办公室、财务部、项目管理部、安全质量环保部等各职能部门主要负责人,国际工程分公司、勘测设计分公司、建设分公司等分/子公司和部分项目部的主要管理人员参加了会议。评审组组长通报了本次现场评审初步结论,并指出了评审中发现的主要问题,给出了整改建议,成都院领导做了表态发言,并承诺下一步将重点落实整改。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3500, 843, 'value_text', '1)重庆云阳建全抽水蓄能电站EPC总承包监理项目(以下简称:云阳监理项目) 工程简介:云阳建全抽蓄电站是中国南水北调集团首个投资控股开发的大型抽水蓄能电站,电站位于重庆市云阳县高阳镇境内,距重庆市公路里程350km,距云阳县城41km,距重庆市第二负荷中心万州直线距离45km,地理位置优越。电站上水库位于高阳镇桂林村和金惠村之间的石河堰水库,下水库位于高阳镇建全村和海坝村之间的双河口水库。云阳建全抽水蓄能电站装机容量1200MW(4×300MW),枢纽建筑物主要包括上水库、输水系统、发电系统和下水库四部分,发电系统包括地下厂房系统建筑物和地面开关站等建筑物。本工程额定水头332.0m,为一等大(1)型工程,主要承担重庆电网调峰、填谷、储能、调频及调相等多种任务。 项目工程总投资85.44亿,其中工程静态投资(不含送出工程投资)70.24亿元,建设征地移民安置补偿静态投资为10.49亿元。项目建成后,对保障重庆市电网安全稳定运行,推动实现“双碳”目标和经济社会可持续发展具有重要作用,预计每年可节约发电标煤量25.6万吨,减少二氧化碳排放量65万吨、二氧化硫1.6万吨,可拉动地方GDP约120至180亿元,每年可增加税收1.5亿元,此外还能有效促进就业、旅游、服务业等。 进展情况: (1)上水库工程:大坝趾板开挖中,全力开展大坝填筑中;1#引水主洞上平段开挖已完成,2#引水主洞上平段开挖完成92%;1#引水斜井导井反拉及2#引水斜井钻机安装完成。 (2)下水库工程:泄洪放空洞开挖完成12.2%;排水料场边坡累计开挖完成44%;大坝填筑累计完成4%。 (3)地下厂房工程:主副厂房Ⅰ、Ⅱ、Ⅲ层全部开挖完成,主变洞Ⅰ、Ⅱ、Ⅲ层全部开挖完成。厂房Ⅲ层岩锚梁混凝土浇筑完成率52%;母线洞Ⅰ层完成开挖;高压电缆上平洞累计完成29.7%;中层排水廊道累计完成81%;自流排水洞累计完成76%;尾水上平洞开挖完成65%,尾水下平洞累计开挖完成25%。 2)漳州高新区绿色发展生态治理项目工程总承包(EPC)建设项目(以下简称:漳州总包项目) 工程简介:漳州高新区绿色发展及产业配套设施项目之生态治理项目位于福建省漳州市,属漳州高新区绿色发展及产业配套设施项目之生态治理部分,治理范围主要是西溪干流高新区段及高新区小流域,包括水环境综合整治、水生态提升、水资源保障三大类,主要建设内容包括上坂断面水环境综合治理工程(生态清淤,清淤规模约为120万立方米,并对淤泥进行固化)、高新区市政污水管网提质增效工程(建设污水管道总长约92公里,新建、扩建污水提升泵站4座)、高新区耕地安全利用与面源污染治理工程(对约5000亩耕地实施风险管控措施)、九龙江流域(高新段)南岸河岸生态带修复提升工程(生态带修复提升总长约33.83公里)、 高新区小流域生态修复工程和九龙江流域(高新段)南部工区小流域生态流量保障工程(拟对共25条主要河道、小流域进行生态治理和补水)。 进展情况: (1)市政污水管网提质增效工程 第一批次和第二批次管网均完成本月进度计划,第一批次管网基本完成剩余施工内容,第二批次管网的靖圆2#污水提升泵站段完成总进度的12%;高新一路完成总进度的12%;省道208段完成总进度的13%。 市政污水管网提质增效工程第一批次的4条污水管网已基本完工,第二批次管网本月完成靖圆2#污水提升泵站段约600m的管道安装及路面恢复工作;高新一路段完成6座沉井的第一模、第二模混凝土浇筑工作;省道208段完成17座沉井的底板封底浇筑工作以及12座逆作井的护臂混凝土浇筑工作,其他井位的高压旋喷桩施工、围挡及路面破除工作有序进行;古湖南路及金圆路因建设用地征拆暂未开工。 (2)南岸河岸生态带修复提升工程 西溪南岸生态修复工程首开段完成本月进度计划的95%。西溪南岸生态修复工程首开段本月完成4号沉井施工、6号驿站装修工作、3号补水泵站设备安装以及部分绿化、园路、广场、桥梁、驿站、泵站施工等工作。截至目前,骑游道施工工作完成90%、驿站施工工作完成35%、桥梁施工工作完成86%、污水处理站施工工作完成72%、泵站施工工作完成90%、生态塘施工工作完成80%、土建管网施工工作完成90%。 (3)小流域生态修复工程 小流域生态修复工程完成本月进度计划100%,累计完成总体进度计划的37%。小流域生态修复工程本月完成河道淤泥疏浚约25400立方米、预应力混凝土板桩施工46300米、仿木桩施工30000米、灌注桩施工102根、旋喷桩施工30根。 (4)小流域生态流量保障工程 小流域生态流量保障工程已完成施工准备,由于征地原因影响,目前9#井施工便道、场地硬化、沉井基础完成,沉井第一节正在进行钢筋绑扎:10#已移交场地,目前正在实施场地平整、截水沟砌筑等临建工作。 3)大邑抽水蓄能电站地质勘察项目(以下简称:大邑地勘项目) 工程简介:大邑抽水蓄能电站位于四川省成都市大邑县鹤鸣镇,为日调节纯抽水蓄能电站,电站距成都市直线距离65km,距成都第三绕城高速直线距离10km。距成都西500千伏变电站约55公里,上网接入条件便利。电站总装机容量1800MW(6×300MW),为一等大(1)型工程,建成后供电四川电网,承担调峰、填谷、储能、调频、调相和紧急事故备用等任务,保障负荷中心电网安全稳定运行。枢纽工程由上水库、输水系统、地下厂房及地面开关站、下水库等建筑物组成。 上水库位于鹤鸣镇大坪村西北侧“龙窝子”宽谷盆地,坝址位于水库东南侧垭口。下水库位于斜江支流黄水河大坪村所在洼地,坝址位于黄水河沟口上游约2.3km。输水发电系统布置于上、下水库间青龙沟的右岸山体内,输水系统总长2185.97m,水平距离为2060m,电站距高比5.41。地下发电厂房布置于输水线路中部,引水系统和尾水系统均采用“两洞六机”的布置方式。 进展情况:大邑抽水蓄能电站勘察工作可研阶段计划工作量:1、钻探6340m/69孔。2、平洞3340m/13洞,其中上水库左坝肩200m/1洞,1#倾倒变形体650m/2洞,2#倾倒变形体200m/1洞,输水线路320m/2洞,地下厂房1590m/3洞,下水库180m/2洞,天然建筑材料200m/2洞。 目前已完成钻探5501.5m/60孔,未完成1210m/13孔。累计已完成平洞1268.5m,未完成2071.5m。其中厂房平洞已完成1113.7m,上水库左坝肩已完成100m,1#倾倒变形体已完成43.6m,2#倾倒变形体已完成0m,下水库左坝肩已完成11.2m,天然建筑材料已完成0m,输水线路已完成0m。 4)大渡河双江口设计项目(以下简称:双江口设计项目) 工程简介:双江口水电站位于四川省阿坝州马尔康市、金川县境内大渡河上源足木足河、绰斯甲河汇口以下约2km河段。电站采用坝式开发,开发任务以发电为主,参与长江中下游防洪,并促进地方经济社会发展。水库正常蓄水位2500.00m,死水位2420.00m,设计洪水位2501.44m,校核洪水位为2504.42m。水库总库容为28.97亿m3,调节库容19.17亿m3。电站装机容量200万kW,多年平均年发电量约77.07亿kW·h。本工程为一等大(1)型工程。枢纽工程由拦河大坝、泄洪建筑物、引水发电系统等组成。拦河土质心墙堆石坝,最大坝高315m,坝顶高程2510.00m。枢纽泄洪最大水头约250m,最大下泄流量约8200m3/s,泄水建筑物包括洞式溢洪道、深孔泄洪洞、竖井泄洪洞和放空洞,其中洞式溢洪道、深孔泄洪洞及利用2#导流洞改建的放空洞位于右岸,利用3#导流洞改建的竖井泄洪洞位于左岸。引水发电系统布置于左岸,发电厂房采用地下式,厂内安装4台容量500MW的立轴混流式水轮发电机组,采用“单机单管供水”及“两机一室一洞”的布置格局。 工程施工总工期为120个月,其中准备工程直线工期28个月,主体工程为74个月,完建工程为18个月。按2013年1季度价格水平,工程设计概算静态总投资为283亿元,总投资为370亿元。 进展情况:2015年4月9日,国家发展和改革委员会印发了《关于四川大渡河双江口水电站项目核准的批复》,同意双江口水电站项目开工建设。目前,大坝填筑已经过半,至高程2366m;地下厂房正在浇筑蜗壳层至发电机层,机电设备同步安装;洞式溢洪道进口、洞身段开挖支护完成,出口边坡正在进行挑坎段开挖;深孔泄洪洞进、出口边坡正在支护。计划2024年底下闸蓄水,2025年底首批机组发电。', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3503, 844, 'value_text', '序 号 | 姓 名 | 职 务 | 专 业 | 工作单位 1 | 葛学福 | 专家组长 | 安全管理、作业安全 | 江西水电 2 | 余正坚 | 专 家 | 安全管理、设备设施 | 水电七局 3 | 苏经仪 | 专 家 | 安全管理、作业安全 | 昆明院 4 | 周建胜 | 专 家 | 安全管理、设备设施 | 安源公司 5 | 赵 泓 | 专 家 | 安全管理 | 安源公司 6 | 朱晓莉 | 项目经理 | 安全管理 | 安源公司 7 | 向 义 | 现场经理 | 安全管理 | 安源公司', NULL, NULL, NULL, '2026-02-13 02:08:48.583305', '2026-02-13 02:08:48.583305'), (3506, 845, 'value_text', '本次评审依据《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》,标准项95项,标准分1000分,成都院本次评审共2项不相关项,不相关项情况见表4.1-1,实评项93项。 表4.1-1 不相关项统计表 项目序号 | 项目名称 | 标准分 | 不参评项原因 5.5.2.2 | 重大危险源登记建档与备案 | 5 | 成都院无《危险化学品重大危险源辨识》(GB18218-2018)规定的重大危险源,查评期间成都院本部、分公司及项目部均无危险化学品重大危险源,本项不参与查评。 5.5.2.3 | 重大危险源监控与管理 | 5 | 成都院无《危险化学品重大危险源辨识》(GB18218-2018)规定的重大危险源,查评期间成都院本部、分公司及项目部均无危险化学品重大危险源,本项不参与查评。 评审组对成都院职能部门、分公司和抽查的项目部进行了现场评审,详见“附件1成都院核心要素评审情况记录表”。', NULL, NULL, NULL, '2026-02-13 02:09:09.966040', '2026-02-13 02:09:09.966040'), (3509, 846, 'value_text', '目标职责要素标准项9项,适用项9项,扣分项5项,标准分120分,应得分120分,实得分113分。 现场查评发现的具体问题详见下表: 序号 | 项目 | 存在的问题 | 扣分标准 1 | 5.1.1.1 目标制定 | 大邑地勘项目部制定的2024年度安全生产目标,缺少设备设施方面的事故控制目标。 | 依据评分标准“②目标内容有缺失,扣1分/项”,共扣1分。 2 | 5.1.1.2 目标落实 | 双江口设计项目部项目经理与各专业部门负责人签订的《2024年度安全责任书》中,目标分解不明确,不满足要求。 | 依据评分标准“②签订责任书、目标分解不满足要求,扣1分/单位”,共扣1分。 3 | 5.1.1.3 目标考核 | 云阳监理项目未对二季度安全生产目标及工作计划完成情况进行考核、监督检查。 | 依据评分标准“①未对目标的完成情况进行评估和考核,扣2分/次”,共扣2分。 4 | 5.1.2.1 机构设置 | 漳州总包项目部安委会组成不符合规定,未包含分包单位负责人。 | 依据评分标准“①安委会组成不符合规定或未及时调整,扣2分/次”,共扣2分 5 | 5.1.2.2 主要负责人及管理层职责 | 双江口设计项目部9月召开的安全生产例会中,未针对成都院隐患大排查、设计分公司安全风险隐患专项整治工作等要求,部署安排隐患排查相关工作。 | 依据评分标准“④会议未布置安全生产工作,扣1分/项”,共扣1分。', NULL, NULL, NULL, '2026-02-13 02:09:09.966040', '2026-02-13 02:09:09.966040'), (3512, 847, 'value_text', '制度化管理要素标准项6项,适用项6项,扣分项2项,标准分50分,应得分50分,实得分46分。 现场查评发现的具体问题详见下表: 序号 | 项目 | 存在的问题 | 扣分标准 1 | 5.2.2 规章制度 | 勘测设计分公司未按成都院《安全风险管控管理办法》的要求制定安全风险管控制度。 | 依据评分标准“①制度内容违背上级相关要求,扣2分/处”,共扣2分。 2 | 5.2.3 操作规程 | 云阳监理项目1#引水洞汽车吊和下库进出水口挖掘机未张贴安全操作规程。 | 依据评分标准“③设备未悬挂安全操作规程,扣1分/处”,共扣2分。', NULL, NULL, NULL, '2026-02-13 02:09:09.966040', '2026-02-13 02:09:09.966040'), (3515, 848, 'element_name', '项目编号:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3516, 848, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3517, 848, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3518, 993, 'value_text', '项目编号:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3519, 993, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3520, 993, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3521, 849, 'element_name', '电力安全生产标准化', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3522, 849, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3523, 849, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3524, 994, 'value_text', '电力安全生产标准化', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3525, 994, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3526, 994, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3527, 850, 'element_name', '复 审 报 告', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3528, 850, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3529, 850, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3530, 995, 'value_text', '复 审 报 告', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3531, 995, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3532, 995, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3533, 851, 'element_name', '评审对象:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3534, 851, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3535, 851, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3536, 996, 'value_text', '评审对象:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3537, 996, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3538, 996, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3539, 852, 'element_name', '申请类别: 电力勘测设计企业 级别:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3540, 852, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3541, 852, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3542, 997, 'value_text', '申请类别: 电力勘测设计企业 级别:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3543, 997, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3544, 997, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3545, 853, 'element_name', '评审得分:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3546, 853, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3547, 853, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3548, 998, 'value_text', '评审得分:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3549, 998, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3550, 998, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3551, 854, 'element_name', '评审日期:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3552, 854, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3553, 854, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3554, 999, 'value_text', '评审日期:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3555, 999, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3556, 999, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3557, 855, 'element_name', '湖北安源安全环保科技有限公司', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3558, 855, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3559, 855, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3560, 1000, 'value_text', '湖北安源安全环保科技有限公司', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3561, 1000, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3562, 1000, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3563, 856, 'element_name', '湖北安源安全环保科技有限公司是经中国电力建设企业协会批准的电...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3564, 856, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3565, 856, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3566, 1001, 'value_text', '湖北安源安全环保科技有限公司是经中国电力建设企业协会批准的电力建设企业安全生产标准化达标评级评审机构。根据', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3567, 1001, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3568, 1001, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3569, 857, 'element_name', '委托,我公司承担', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3570, 857, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3571, 857, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3572, 1002, 'value_text', '委托,我公司承担', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3573, 1002, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3574, 1002, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3575, 858, 'element_name', '安全生产标准化复审工作。在本次评审工作中,我公司郑重承诺:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3576, 858, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3577, 858, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3578, 1003, 'value_text', '安全生产标准化复审工作。在本次评审工作中,我公司郑重承诺:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3579, 1003, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3580, 1003, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3581, 859, 'element_name', '将客观、公正、独立的开展评审工作,严格按照《电力建设企业安全...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3582, 859, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3583, 859, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3584, 1004, 'value_text', '将客观、公正、独立的开展评审工作,严格按照《电力建设企业安全生产标准化评级程序及工作要求》《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》等相关文件及标准进行评审;', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3585, 1004, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3586, 1004, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3587, 860, 'element_name', '如实反映被评审单位的安全生产标准化建设状况,不出具虚假或者严...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3588, 860, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3589, 860, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3590, 1005, 'value_text', '如实反映被评审单位的安全生产标准化建设状况,不出具虚假或者严重失实的评审报告;', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3591, 1005, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3592, 1005, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3593, 861, 'element_name', '保守被评审单位的技术秘密和商业秘密;', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3594, 861, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3595, 861, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3596, 1006, 'value_text', '保守被评审单位的技术秘密和商业秘密;', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3597, 1006, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3598, 1006, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3599, 862, 'element_name', '恪守职业准则,不发生其他违法、违规的行为;', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3600, 862, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3601, 862, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3602, 1007, 'value_text', '恪守职业准则,不发生其他违法、违规的行为;', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3603, 1007, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3604, 1007, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3605, 863, 'element_name', '自觉接受国家能源局及其派出机构、中国电力建设集团(股份)有限...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3606, 863, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3607, 863, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3608, 1008, 'value_text', '自觉接受国家能源局及其派出机构、中国电力建设集团(股份)有限公司的监督管理。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3609, 1008, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3610, 1008, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3611, 864, 'element_name', '法人代表:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3612, 864, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3613, 864, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3614, 1009, 'value_text', '法人代表:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3615, 1009, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3616, 1009, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3617, 865, 'element_name', '湖北安源安全环保科技有限公司(公章)', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3618, 865, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3619, 865, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3620, 1010, 'value_text', '湖北安源安全环保科技有限公司(公章)', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3621, 1010, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3622, 1010, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3623, 866, 'element_name', '前 言', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3624, 866, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3625, 866, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3626, 1011, 'value_text', '前 言', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3627, 1011, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3628, 1011, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3629, 867, 'element_name', '顺利通过电力勘测设计企业一级安全生产标准化评审,于', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3630, 867, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3631, 867, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3632, 1012, 'value_text', '顺利通过电力勘测设计企业一级安全生产标准化评审,于', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3633, 1012, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3634, 1012, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3635, 868, 'element_name', '获得电力安全生产标准化一级企业证书。为落实《中国电力建设股份...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3636, 868, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3637, 868, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3638, 1013, 'value_text', '获得电力安全生产标准化一级企业证书。为落实《中国电力建设股份有限公司安全生产标准化建设管理办法(2019年版)》(中电建股〔2019〕122号)等文件精神,', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3639, 1013, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3640, 1013, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3641, 869, 'element_name', '提出电力安全生产标准化复审现场评审申请,申请标准化复审级别为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3642, 869, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3643, 869, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3644, 1014, 'value_text', '提出电力安全生产标准化复审现场评审申请,申请标准化复审级别为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3645, 1014, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3646, 1014, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3647, 870, 'element_name', '依据《电力建设企业安全生产标准化评级程序及工作要求》(中电建...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3648, 870, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3649, 870, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3650, 1015, 'value_text', '依据《电力建设企业安全生产标准化评级程序及工作要求》(中电建协〔2014〕24号文)中关于评审期的规定,评审期为申请日前一年时间,', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3651, 1015, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3652, 1015, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3653, 871, 'element_name', '提出电力安全生产标准化复审申请日期为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3654, 871, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3655, 871, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3656, 1016, 'value_text', '提出电力安全生产标准化复审申请日期为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3657, 1016, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3658, 1016, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3659, 872, 'element_name', ',因此,', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3660, 872, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3661, 872, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3662, 1017, 'value_text', ',因此,', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3663, 1017, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3664, 1017, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3665, 873, 'element_name', '本次标准化达标评级评审期为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3666, 873, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3667, 873, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3668, 1018, 'value_text', '本次标准化达标评级评审期为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3669, 1018, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3670, 1018, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3671, 874, 'element_name', '期间,湖北安源安全环保科技有限公司(以下简称“湖北安源公司”...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3672, 874, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3673, 874, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3674, 1019, 'value_text', '期间,湖北安源安全环保科技有限公司(以下简称“湖北安源公司”)成立了', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3675, 1019, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3676, 1019, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3677, 875, 'element_name', '安全生产标准化复审评审组(以下简称“评审组”),分阶段对', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3678, 875, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3679, 875, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3680, 1020, 'value_text', '安全生产标准化复审评审组(以下简称“评审组”),分阶段对', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3681, 1020, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3682, 1020, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3683, 876, 'element_name', '进行了安全生产标准化复审现场评审工作。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3684, 876, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3685, 876, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3686, 1021, 'value_text', '进行了安全生产标准化复审现场评审工作。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3687, 1021, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3688, 1021, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3689, 877, 'element_name', '评审组在', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3690, 877, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3691, 877, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3692, 1022, 'value_text', '评审组在', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3693, 1022, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3694, 1022, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3695, 878, 'element_name', '自查的基础上,对照《中国电力建设集团(股份)有限公司电力勘测...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3696, 878, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3697, 878, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3698, 1023, 'value_text', '自查的基础上,对照《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》中的八个核心要求内容进行了逐项评审。根据现场评审情况,评审组按客观、公正的原则,编制了《', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3699, 1023, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3700, 1023, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3701, 879, 'element_name', '安全生产标准化复审报告》(送审稿)。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3702, 879, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3703, 879, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3704, 1024, 'value_text', '安全生产标准化复审报告》(送审稿)。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3705, 1024, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3706, 1024, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3707, 880, 'element_name', '本次安全生产标准化评审工作得到了股份公司、', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3708, 880, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3709, 880, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3710, 1025, 'value_text', '本次安全生产标准化评审工作得到了股份公司、', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3711, 1025, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3712, 1025, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3713, 881, 'element_name', '领导及有关人员的大力支持和密切配合,谨此表示衷心的感谢!', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3714, 881, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3715, 881, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3716, 1026, 'value_text', '领导及有关人员的大力支持和密切配合,谨此表示衷心的感谢!', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3717, 1026, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3718, 1026, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3719, 882, 'element_name', '目 录', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3720, 882, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3721, 882, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3722, 1027, 'value_text', '目 录', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3723, 1027, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3724, 1027, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3725, 883, 'element_name', '1 企业概述 1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3726, 883, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3727, 883, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3728, 1028, 'value_text', '1 企业概述 1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3729, 1028, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3730, 1028, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3731, 884, 'element_name', '1.1 企业简介 1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3732, 884, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3733, 884, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3734, 1029, 'value_text', '1.1 企业简介 1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3735, 1029, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3736, 1029, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3737, 885, 'element_name', '1.2 安全生产管理及绩效 1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3738, 885, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3739, 885, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3740, 1030, 'value_text', '1.2 安全生产管理及绩效 1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3741, 1030, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3742, 1030, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3743, 886, 'element_name', '1.3 安全生产标准化建设和持续运行情况 2', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3744, 886, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3745, 886, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3746, 1031, 'value_text', '1.3 安全生产标准化建设和持续运行情况 2', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3747, 1031, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3748, 1031, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3749, 887, 'element_name', '1.4 安全生产管理亮点 3', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3750, 887, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3751, 887, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3752, 1032, 'value_text', '1.4 安全生产管理亮点 3', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3753, 1032, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3754, 1032, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3755, 888, 'element_name', '2 企业自评概述 4', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3756, 888, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3757, 888, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3758, 1033, 'value_text', '2 企业自评概述 4', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3759, 1033, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3760, 1033, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3761, 889, 'element_name', '2.1 自评过程 4', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3762, 889, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3763, 889, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3764, 1034, 'value_text', '2.1 自评过程 4', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3765, 1034, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3766, 1034, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3767, 890, 'element_name', '2.2 自评结论 4', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3768, 890, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3769, 890, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3770, 1035, 'value_text', '2.2 自评结论 4', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3771, 1035, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3772, 1035, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3773, 891, 'element_name', '3 复审概况 5', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3774, 891, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3775, 891, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3776, 1036, 'value_text', '3 复审概况 5', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3777, 1036, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3778, 1036, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3779, 892, 'element_name', '3.1 工作依据 5', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3780, 892, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3781, 892, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3782, 1037, 'value_text', '3.1 工作依据 5', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3783, 1037, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3784, 1037, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3785, 893, 'element_name', '3.2 目的及原则 5', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3786, 893, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3787, 893, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3788, 1038, 'value_text', '3.2 目的及原则 5', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3789, 1038, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3790, 1038, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3791, 894, 'element_name', '3.3 复审范围 6', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3792, 894, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3793, 894, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3794, 1039, 'value_text', '3.3 复审范围 6', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3795, 1039, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3796, 1039, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3797, 895, 'element_name', '3.4 复审方法 6', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3798, 895, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3799, 895, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3800, 1040, 'value_text', '3.4 复审方法 6', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3801, 1040, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3802, 1040, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3803, 896, 'element_name', '3.5 复审过程概述 7', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3804, 896, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3805, 896, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3806, 1041, 'value_text', '3.5 复审过程概述 7', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3807, 1041, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3808, 1041, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3809, 897, 'element_name', '4 现场复审情况 8', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3810, 897, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3811, 897, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3812, 1042, 'value_text', '4 现场复审情况 8', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3813, 1042, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3814, 1042, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3815, 898, 'element_name', '4.1 核心要求复审情况 8', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3816, 898, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3817, 898, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3818, 1043, 'value_text', '4.1 核心要求复审情况 8', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3819, 1043, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3820, 1043, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3821, 899, 'element_name', '4.2 复审结果 8', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3822, 899, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3823, 899, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3824, 1044, 'value_text', '4.2 复审结果 8', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3825, 1044, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3826, 1044, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3827, 900, 'element_name', '4.3 现场复审得分分析 9', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3828, 900, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3829, 900, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3830, 1045, 'value_text', '4.3 现场复审得分分析 9', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3831, 1045, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3832, 1045, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3833, 901, 'element_name', '5 现场复审发现的问题及整改 10', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3834, 901, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3835, 901, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3836, 1046, 'value_text', '5 现场复审发现的问题及整改 10', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3837, 1046, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3838, 1046, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3839, 902, 'element_name', '6 现场复审结论 11', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3840, 902, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3841, 902, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3842, 1047, 'value_text', '6 现场复审结论 11', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3843, 1047, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3844, 1047, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3845, 903, 'element_name', '7 附件 12', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3846, 903, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3847, 903, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3848, 1048, 'value_text', '7 附件 12', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3849, 1048, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3850, 1048, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3851, 904, 'element_name', '附件1 核心要素评审情况记录表 13', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3852, 904, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3853, 904, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3854, 1049, 'value_text', '附件1 核心要素评审情况记录表 13', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3855, 1049, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3856, 1049, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3857, 905, 'element_name', '附件2 现场评审分工表 14', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3858, 905, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3859, 905, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3860, 1050, 'value_text', '附件2 现场评审分工表 14', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3861, 1050, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3862, 1050, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3863, 906, 'element_name', '附件3 安全生产标准化复审实施方案 15', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3864, 906, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3865, 906, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3866, 1051, 'value_text', '附件3 安全生产标准化复审实施方案 15', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3867, 1051, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3868, 1051, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3869, 907, 'element_name', '附件4 材料真实性说明 16', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3870, 907, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3871, 907, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3872, 1052, 'value_text', '附件4 材料真实性说明 16', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3873, 1052, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3874, 1052, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3875, 908, 'element_name', '附件5 在建项目一览表 17', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3876, 908, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3877, 908, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3878, 1053, 'value_text', '附件5 在建项目一览表 17', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3879, 1053, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3880, 1053, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3881, 909, 'element_name', '附件6 安全管理制度清单 18', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3882, 909, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3883, 909, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3884, 1054, 'value_text', '附件6 安全管理制度清单 18', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3885, 1054, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3886, 1054, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3887, 910, 'element_name', '附件7 现场评审末次会签到表 19', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3888, 910, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3889, 910, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3890, 1055, 'value_text', '附件7 现场评审末次会签到表 19', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3891, 1055, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3892, 1055, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3893, 911, 'element_name', '1 企业概述', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3894, 911, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3895, 911, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3896, 1056, 'value_text', '1 企业概述', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3897, 1056, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3898, 1056, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3899, 912, 'element_name', '1.1 企业简介', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3900, 912, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3901, 912, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3902, 1057, 'value_text', '1.1 企业简介', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3903, 1057, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3904, 1057, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3905, 913, 'element_name', '组织机构如图1.1-1。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3906, 913, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3907, 913, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3908, 1058, 'value_text', '组织机构如图1.1-1。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3909, 1058, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3910, 1058, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3911, 914, 'element_name', '图1.1-1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3912, 914, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3913, 914, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3914, 1059, 'value_text', '图1.1-1', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3915, 1059, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3916, 1059, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3917, 915, 'element_name', '组织机构图', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3918, 915, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3919, 915, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3920, 1060, 'value_text', '组织机构图', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3921, 1060, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3922, 1060, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3923, 916, 'element_name', '1.2 安全生产管理及绩效', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3924, 916, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3925, 916, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3926, 1061, 'value_text', '1.2 安全生产管理及绩效', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3927, 1061, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3928, 1061, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3929, 917, 'element_name', '1.2.1 目标职责', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3930, 917, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3931, 917, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3932, 1062, 'value_text', '1.2.1 目标职责', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3933, 1062, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3934, 1062, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3935, 918, 'element_name', '1)目标', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3936, 918, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3937, 918, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3938, 1063, 'value_text', '1)目标', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3939, 1063, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3940, 1063, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3941, 919, 'element_name', '2)组织机构和职责', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3942, 919, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3943, 919, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3944, 1064, 'value_text', '2)组织机构和职责', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3945, 1064, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3946, 1064, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3947, 920, 'element_name', '3)全员参与', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3948, 920, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3949, 920, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3950, 1065, 'value_text', '3)全员参与', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3951, 1065, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3952, 1065, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3953, 921, 'element_name', '4)安全生产投入', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3954, 921, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3955, 921, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3956, 1066, 'value_text', '4)安全生产投入', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3957, 1066, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3958, 1066, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3959, 922, 'element_name', '5)安全文化建设', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3960, 922, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3961, 922, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3962, 1067, 'value_text', '5)安全文化建设', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3963, 1067, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3964, 1067, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3965, 923, 'element_name', '1.2.2 制度化管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3966, 923, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3967, 923, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3968, 1068, 'value_text', '1.2.2 制度化管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3969, 1068, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3970, 1068, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3971, 924, 'element_name', '1.2.3 教育培训', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3972, 924, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3973, 924, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3974, 1069, 'value_text', '1.2.3 教育培训', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3975, 1069, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3976, 1069, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3977, 925, 'element_name', '1)教育培训管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3978, 925, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3979, 925, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3980, 1070, 'value_text', '1)教育培训管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3981, 1070, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3982, 1070, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3983, 926, 'element_name', '2)人员教育培训', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3984, 926, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3985, 926, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3986, 1071, 'value_text', '2)人员教育培训', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3987, 1071, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3988, 1071, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3989, 927, 'element_name', '1.2.4 现场管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3990, 927, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (3991, 927, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3992, 1072, 'value_text', '1.2.4 现场管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3993, 1072, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3994, 1072, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3995, 928, 'element_name', '1)设备设施管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3996, 928, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3997, 928, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3998, 1073, 'value_text', '1)设备设施管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (3999, 1073, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4000, 1073, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4001, 929, 'element_name', '2)作业安全', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4002, 929, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4003, 929, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4004, 1074, 'value_text', '2)作业安全', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4005, 1074, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4006, 1074, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4007, 930, 'element_name', '3)岗位达标', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4008, 930, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4009, 930, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4010, 1075, 'value_text', '3)岗位达标', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4011, 1075, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4012, 1075, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4013, 931, 'element_name', '4)相关方', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4014, 931, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4015, 931, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4016, 1076, 'value_text', '4)相关方', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4017, 1076, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4018, 1076, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4019, 932, 'element_name', '5)职业健康', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4020, 932, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4021, 932, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4022, 1077, 'value_text', '5)职业健康', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4023, 1077, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4024, 1077, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4025, 933, 'element_name', '1.2.5 安全风险管控和隐患排查治理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4026, 933, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4027, 933, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4028, 1078, 'value_text', '1.2.5 安全风险管控和隐患排查治理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4029, 1078, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4030, 1078, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4031, 934, 'element_name', '1)风险辨识与评价', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4032, 934, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4033, 934, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4034, 1079, 'value_text', '1)风险辨识与评价', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4035, 1079, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4036, 1079, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4037, 935, 'element_name', '2)重大危险源管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4038, 935, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4039, 935, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4040, 1080, 'value_text', '2)重大危险源管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4041, 1080, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4042, 1080, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4043, 936, 'element_name', '3)隐患排查', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4044, 936, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4045, 936, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4046, 1081, 'value_text', '3)隐患排查', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4047, 1081, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4048, 1081, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4049, 937, 'element_name', '4)变更管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4050, 937, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4051, 937, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4052, 1082, 'value_text', '4)变更管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4053, 1082, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4054, 1082, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4055, 938, 'element_name', '5)预测预警', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4056, 938, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4057, 938, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4058, 1083, 'value_text', '5)预测预警', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4059, 1083, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4060, 1083, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4061, 939, 'element_name', '1.2.6 应急救援', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4062, 939, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4063, 939, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4064, 1084, 'value_text', '1.2.6 应急救援', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4065, 1084, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4066, 1084, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4067, 940, 'element_name', '1.2.7 事故管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4068, 940, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4069, 940, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4070, 1085, 'value_text', '1.2.7 事故管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4071, 1085, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4072, 1085, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4073, 941, 'element_name', '1.2.8 持续改进', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4074, 941, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4075, 941, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4076, 1086, 'value_text', '1.2.8 持续改进', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4077, 1086, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4078, 1086, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4079, 942, 'element_name', '1.3 安全生产标准化建设和持续运行情况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4080, 942, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4081, 942, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4082, 1087, 'value_text', '1.3 安全生产标准化建设和持续运行情况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4083, 1087, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4084, 1087, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4085, 943, 'element_name', '获得国家能源局安全生产标准化一级企业达标证书,取得证书后,继...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4086, 943, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4087, 943, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4088, 1088, 'value_text', '获得国家能源局安全生产标准化一级企业达标证书,取得证书后,继续深入开展安全生产标准化建设工作,年公司顺利通过电力勘测设计企业一级安全生产标准化评审,于', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4089, 1088, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4090, 1088, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4091, 944, 'element_name', '获得电力安全生产标准化一级企业证书。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4092, 944, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4093, 944, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4094, 1089, 'value_text', '获得电力安全生产标准化一级企业证书。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4095, 1089, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4096, 1089, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4097, 945, 'element_name', '1.4 安全生产管理亮点', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4098, 945, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4099, 945, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4100, 1090, 'value_text', '1.4 安全生产管理亮点', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4101, 1090, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4102, 1090, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4103, 946, 'element_name', '2 企业自评概述', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4104, 946, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4105, 946, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4106, 1091, 'value_text', '2 企业自评概述', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4107, 1091, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4108, 1091, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4109, 947, 'element_name', '2.1 自评过程', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4110, 947, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4111, 947, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4112, 1092, 'value_text', '2.1 自评过程', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4113, 1092, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4114, 1092, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4115, 948, 'element_name', '2.2 自评结论', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4116, 948, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4117, 948, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4118, 1093, 'value_text', '2.2 自评结论', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4119, 1093, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4120, 1093, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4121, 949, 'element_name', '成立安全生产标准化自评工作领导小组,依据《中国电力建设股份有...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4122, 949, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4123, 949, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4124, 1094, 'value_text', '成立安全生产标准化自评工作领导小组,依据《中国电力建设股份有限公司安全生产标准化建设管理办法》《电力勘测设计企业安全生产标准化评价标准(2020年版)》,制定了', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4125, 1094, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4126, 1094, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4127, 950, 'element_name', ',组建自评小组对公司安全生产标准化开展情况进行了检查。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4128, 950, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4129, 950, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4130, 1095, 'value_text', ',组建自评小组对公司安全生产标准化开展情况进行了检查。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4131, 1095, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4132, 1095, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4133, 951, 'element_name', '安全生产标准化自评结论:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4134, 951, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4135, 951, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4136, 1096, 'value_text', '安全生产标准化自评结论:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4137, 1096, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4138, 1096, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4139, 952, 'element_name', '满足电力勘测设计企业安全生产标准化一级企业的条件和要求。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4140, 952, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4141, 952, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4142, 1097, 'value_text', '满足电力勘测设计企业安全生产标准化一级企业的条件和要求。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4143, 1097, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4144, 1097, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4145, 953, 'element_name', '3 复审概况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4146, 953, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4147, 953, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4148, 1098, 'value_text', '3 复审概况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4149, 1098, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4150, 1098, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4151, 954, 'element_name', '3.1 工作依据', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4152, 954, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4153, 954, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4154, 1099, 'value_text', '3.1 工作依据', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4155, 1099, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4156, 1099, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4157, 955, 'element_name', '1)《关于推进电力安全生产标准化建设工作有关事项的通知》(国...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4158, 955, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4159, 955, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4160, 1100, 'value_text', '1)《关于推进电力安全生产标准化建设工作有关事项的通知》(国能安全〔2015〕126号)', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4161, 1100, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4162, 1100, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4163, 956, 'element_name', '2)《电力勘测设计企业安全生产标准化实施规范》(DLT 26...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4164, 956, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4165, 956, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4166, 1101, 'value_text', '2)《电力勘测设计企业安全生产标准化实施规范》(DLT 2681-2023)', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4167, 1101, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4168, 1101, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4169, 957, 'element_name', '3)《关于印发<中国电力建设股份有限公司安全生产标准化建设管...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4170, 957, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4171, 957, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4172, 1102, 'value_text', '3)《关于印发<中国电力建设股份有限公司安全生产标准化建设管理办法>的通知》(中电建股〔2019〕122号)', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4173, 1102, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4174, 1102, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4175, 958, 'element_name', '4)《关于进一步加强安全生产标准化建设有关工作的通知》(中电...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4176, 958, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4177, 958, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4178, 1103, 'value_text', '4)《关于进一步加强安全生产标准化建设有关工作的通知》(中电建股安环〔2022〕27号)', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4179, 1103, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4180, 1103, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4181, 959, 'element_name', '5)《电力勘测设计企业安全生产标准化评价标准(2020年版)...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4182, 959, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4183, 959, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4184, 1104, 'value_text', '5)《电力勘测设计企业安全生产标准化评价标准(2020年版)》(中电建股安环〔2020〕19号', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4185, 1104, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4186, 1104, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4187, 960, 'element_name', '6)《中国电力建设集团(股份)有限公司2024年安全生产与职...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4188, 960, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4189, 960, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4190, 1105, 'value_text', '6)《中国电力建设集团(股份)有限公司2024年安全生产与职业健康、节约能源与生态环境保护工作要点》(中电建股安环〔2024〕6号)', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4191, 1105, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4192, 1105, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4193, 961, 'element_name', '3.2 目的及原则', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4194, 961, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4195, 961, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4196, 1106, 'value_text', '3.2 目的及原则', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4197, 1106, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4198, 1106, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4199, 962, 'element_name', '1)坚持“安全第一、预防为主、综合治理”的方针,全面加强企业...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4200, 962, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4201, 962, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4202, 1107, 'value_text', '1)坚持“安全第一、预防为主、综合治理”的方针,全面加强企业安全管理,健全规章制度,完善安全标准,提高企业安全生产技术水平,夯实安全生产基础。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4203, 1107, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4204, 1107, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4205, 963, 'element_name', '安全生产标准化体系运行现状是否符合一级企业要求进行复审。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4206, 963, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4207, 963, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4208, 1108, 'value_text', '安全生产标准化体系运行现状是否符合一级企业要求进行复审。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4209, 1108, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4210, 1108, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4211, 964, 'element_name', '3)本次达标评级评审依据《中国电力建设集团(股份)有限公司电...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4212, 964, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4213, 964, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4214, 1109, 'value_text', '3)本次达标评级评审依据《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》(中电建股安环〔2020〕19号)《关于印发<中国电力建设股份有限公司安全生产标准化建设管理办法>的通知》(中电建股〔2019〕122号)以及国家安全法规、规程和标准,在', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4215, 1109, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4216, 1109, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4217, 965, 'element_name', '自查评报告的基础上坚持政策性、科学性、公正性和针对性的原则,...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4218, 965, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4219, 965, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4220, 1110, 'value_text', '自查评报告的基础上坚持政策性、科学性、公正性和针对性的原则,客观、公正、独立的开展现场复审工作。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4221, 1110, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4222, 1110, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4223, 966, 'element_name', '3.3 复审范围', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4224, 966, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4225, 966, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4226, 1111, 'value_text', '3.3 复审范围', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4227, 1111, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4228, 1111, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4229, 967, 'element_name', '1)本次评审范围包括:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4230, 967, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4231, 967, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4232, 1112, 'value_text', '1)本次评审范围包括:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4233, 1112, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4234, 1112, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4235, 968, 'element_name', '2)评审期:本次评审期为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4236, 968, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4237, 968, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4238, 1113, 'value_text', '2)评审期:本次评审期为', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4239, 1113, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4240, 1113, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4241, 969, 'element_name', '。现场评审期间,评审组', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4242, 969, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4243, 969, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4244, 1114, 'value_text', '。现场评审期间,评审组', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4245, 1114, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4246, 1114, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4247, 970, 'element_name', '分批次对', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4248, 970, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4249, 970, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4250, 1115, 'value_text', '分批次对', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4251, 1115, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4252, 1115, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4253, 971, 'element_name', '安全管理情况及抽查的项目现场情况进行了评审。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4254, 971, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4255, 971, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4256, 1116, 'value_text', '安全管理情况及抽查的项目现场情况进行了评审。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4257, 1116, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4258, 1116, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4259, 972, 'element_name', '3.4 复审方法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4260, 972, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4261, 972, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4262, 1117, 'value_text', '3.4 复审方法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4263, 1117, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4264, 1117, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4265, 973, 'element_name', '根据安全生产标准化达标评级工作的特点,本报告采用安全检查表法...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4266, 973, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4267, 973, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4268, 1118, 'value_text', '根据安全生产标准化达标评级工作的特点,本报告采用安全检查表法和专家现场询问、观察法进行评价。运用雷达图分析法,对企业标准化达标评审的内容进行综合分析,指出相对薄弱环节。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4269, 1118, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4270, 1118, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4271, 974, 'element_name', '1)安全检查表法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4272, 974, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4273, 974, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4274, 1119, 'value_text', '1)安全检查表法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4275, 1119, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4276, 1119, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4277, 975, 'element_name', '安全检查表法是将工程、系统、作业活动分割成若干小的子系统,根...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4278, 975, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4279, 975, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4280, 1120, 'value_text', '安全检查表法是将工程、系统、作业活动分割成若干小的子系统,根据有关法规、标准,结合运行经验,归纳、总结危险、有害因素,确定检查项目,以提问或打分的形式,按顺序编制成表,进行检查和评分。本报告安全检查表采用《电力建设企业安全生产标准化评级程序及工作要求》(中电建协〔2014〕24号)中的基本条件和《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》中8个核心要素,结合电力勘测设计企业工作实际,来编制检查表进行检查和评分。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4281, 1120, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4282, 1120, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4283, 976, 'element_name', '2)专家现场询问、观察法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4284, 976, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4285, 976, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4286, 1121, 'value_text', '2)专家现场询问、观察法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4287, 1121, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4288, 1121, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4289, 977, 'element_name', '评审组派出了评审员赴现场检查,评审员在检查中坚持原则、实事求...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4290, 977, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4291, 977, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4292, 1122, 'value_text', '评审组派出了评审员赴现场检查,评审员在检查中坚持原则、实事求是、客观公正,针对被审单位的特点综合采用现场检查、查阅和分析资料、现场询问、实物检查或抽样检查、仪表指示观测和分析、调查和询问等方式,进行认真检查和分析,同时力求文字叙述简洁、问题准确、主次分明、建议具体、有针对性、可操作性强,对技术性较强的内容和存在不同分歧的扣分条款,先后多次组织评审员研究分析和讨论。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4293, 1122, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4294, 1122, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4295, 978, 'element_name', '3)雷达图分析法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4296, 978, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4297, 978, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4298, 1123, 'value_text', '3)雷达图分析法', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4299, 1123, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4300, 1123, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4301, 979, 'element_name', '雷达图分析法是将评审对象的八个要素的指标情况用二维平面图形,...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4302, 979, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4303, 979, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4304, 1124, 'value_text', '雷达图分析法是将评审对象的八个要素的指标情况用二维平面图形,该图形与导航雷达显示屏上的图形十分相似因而得名。雷达图的特点是直观,从雷达图上可直观地看出评审对象的各指标的差异,从而诊断出评审对象需要巩固和提升的方面。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4305, 1124, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4306, 1124, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4307, 980, 'element_name', '3.5 复审过程概述', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4308, 980, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4309, 980, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4310, 1125, 'value_text', '3.5 复审过程概述', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4311, 1125, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4312, 1125, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4313, 981, 'element_name', '3.5.1 现场复审项目选择', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4314, 981, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4315, 981, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4316, 1126, 'value_text', '3.5.1 现场复审项目选择', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4317, 1126, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4318, 1126, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4319, 982, 'element_name', '3.5.2 现场复审人员', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4320, 982, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4321, 982, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4322, 1127, 'value_text', '3.5.2 现场复审人员', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4323, 1127, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4324, 1127, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4325, 983, 'element_name', '3.5.3 现场复审工作过程', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4326, 983, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4327, 983, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4328, 1128, 'value_text', '3.5.3 现场复审工作过程', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4329, 1128, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4330, 1128, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4331, 984, 'element_name', '3)评审组专家分析会:评审组召开评审工作沟通会,就评审工作进...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4332, 984, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4333, 984, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4334, 1129, 'value_text', '3)评审组专家分析会:评审组召开评审工作沟通会,就评审工作进展情况、现场评审中发现的问题、适用的法规制度等情况进行充分的沟通交流,统一意见,形成共识。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4335, 1129, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4336, 1129, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4337, 985, 'element_name', '4)末次会议:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4338, 985, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4339, 985, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4340, 1130, 'value_text', '4)末次会议:', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4341, 1130, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4342, 1130, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4343, 986, 'element_name', '本部第一会议室召开了末次会议,评审组成员,', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4344, 986, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4345, 986, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4346, 1131, 'value_text', '本部第一会议室召开了末次会议,评审组成员,', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4347, 1131, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4348, 1131, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4349, 987, 'element_name', '相关领导,党委/群团工作部、公司/董事会办公室、纪委/巡查工...', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4350, 987, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4351, 987, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4352, 1132, 'value_text', '相关领导,党委/群团工作部、公司/董事会办公室、纪委/巡查工作办公室、财务部、项目管理部、安全质量环保部等各职能部门主要负责人,国际工程分公司、勘测设计分公司、建设分公司等分/子公司和部分项目部的主要管理人员参加了会议。评审组组长通报了本次现场评审初步结论,并指出了评审中发现的主要问题,给出了整改建议,', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4353, 1132, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4354, 1132, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4355, 988, 'element_name', '领导做了表态发言,并承诺下一步将重点落实整改。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4356, 988, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4357, 988, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4358, 1133, 'value_text', '领导做了表态发言,并承诺下一步将重点落实整改。', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4359, 1133, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4360, 1133, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4361, 989, 'element_name', '4 现场复审情况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4362, 989, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4363, 989, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4364, 1134, 'value_text', '4 现场复审情况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4365, 1134, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4366, 1134, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4367, 990, 'element_name', '4.1 核心要求复审情况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4368, 990, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4369, 990, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4370, 1135, 'value_text', '4.1 核心要求复审情况', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4371, 1135, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4372, 1135, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4373, 991, 'element_name', '4.1.1 目标职责', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4374, 991, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4375, 991, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4376, 1136, 'value_text', '4.1.1 目标职责', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4377, 1136, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4378, 1136, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4379, 992, 'element_name', '4.1.2 制度化管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4380, 992, 'element_type', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4381, 992, 'is_static', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4382, 1137, 'value_text', '4.1.2 制度化管理', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4383, 1137, 'is_filled', 'true', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4384, 1137, 'fill_source', 'static', NULL, NULL, NULL, '2026-02-13 10:34:15.327467', '2026-02-13 10:34:15.327467'), (4385, 400, 'file_name', '01-附件1 成都院核心要素评审情况记录表.docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4386, 400, 'file_type', 'docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4387, 400, 'file_size', '376919', NULL, 376919.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4388, 401, 'file_name', '02-附件2 成都院现场评审分工表.zip', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4389, 401, 'file_type', 'zip', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4390, 401, 'file_size', '2171136', NULL, 2171136.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4391, 402, 'file_name', '03-附件3 关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知.pdf', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4392, 402, 'file_type', 'pdf', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4393, 402, 'file_size', '360940', NULL, 360940.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4394, 403, 'file_name', '04-附件4 成都院材料真实性说明.png', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4395, 403, 'file_type', 'png', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4396, 403, 'file_size', '514264', NULL, 514264.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4397, 404, 'file_name', '05-附件5 成都院在建项目一览表.docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4398, 404, 'file_type', 'docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4399, 404, 'file_size', '16056', NULL, 16056.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4400, 405, 'file_name', '06-附件6 成都院安全管理制度清单.docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4401, 405, 'file_type', 'docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4402, 405, 'file_size', '16942', NULL, 16942.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4403, 406, 'file_name', '07-附件7 成都院现场评审末次会签到表.png', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4404, 406, 'file_type', 'png', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4405, 406, 'file_size', '564269', NULL, 564269.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4406, 407, 'file_name', '08-中国电建集团成都勘测设计工作方案.zip', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4407, 407, 'file_type', 'zip', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4408, 407, 'file_size', '299279', NULL, 299279.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4409, 408, 'file_name', '09-附件8 复审问题建议表.docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4410, 408, 'file_type', 'docx', NULL, NULL, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'); INSERT INTO node_properties (id, node_id, prop_key, prop_value, prop_json, prop_number, prop_date, created_at, updated_at) VALUES (4411, 408, 'file_size', '29034', NULL, 29034.0000, NULL, '2026-02-13 17:07:39.736899', '2026-02-13 17:07:39.736899'), (4412, 10, 'doc_content', NULL, '{"page": {"widthMm": 210.0, "heightMm": 297.0, "marginTopMm": 25.4, "marginLeftMm": 28.0, "marginRightMm": 28.0, "marginBottomMm": 20.0}, "blocks": [{"id": "b0", "type": "paragraph", "style": {"alignment": "left"}, "images": [{"rId": "rId20", "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABPEA...[truncated]", "widthInch": 3.78, "heightInch": 0.78}]}, {"id": "b1", "runs": [{"text": ""}], "type": "paragraph"}, {"id": "b2", "runs": [{"text": ""}], "type": "paragraph"}, {"id": "b3", "runs": [{"bold": true, "text": "项目编号:BZ-00", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "9", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "2-2024", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph"}, {"id": "b4", "runs": [{"text": ""}], "type": "paragraph"}, {"id": "b5", "runs": [{"bold": true, "text": "电力安全生产标准化", "fontSize": 24.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"alignment": "center"}}, {"id": "b6", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center"}}, {"id": "b7", "runs": [{"bold": true, "text": "复 审 报 告", "fontSize": 36.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"alignment": "center"}}, {"id": "b8", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center"}}, {"id": "b9", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center"}}, {"id": "b10", "runs": [{"text": "评审对象:", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "中国电建集团", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "成都", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "勘测设计研究院有限公司", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 2.5, "indentFirstLine": 622300}}, {"id": "b11", "runs": [{"text": "申请类别:", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": " 电力勘测设计企业 ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "级别:", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "一级 ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 2.5, "indentFirstLine": 622300}}, {"id": "b12", "runs": [{"text": "评审得分:", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "93.33", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "分", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "级别:", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": " 一级 ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "left", "lineSpacing": 2.5, "indentFirstLine": 622300}}, {"id": "b13", "runs": [{"text": "评审日期:", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "2024年", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "13", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "日至2024年", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": "月19日 ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 14.0, "underline": "THICK (6)", "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "left", "lineSpacing": 2.5, "indentFirstLine": 622300}}, {"id": "b14", "runs": [{"text": ""}], "type": "paragraph", "style": {"lineSpacing": 2.5, "indentFirstLine": 666750}}, {"id": "b15", "runs": [{"text": ""}], "type": "paragraph"}, {"id": "b16", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center"}}, {"id": "b17", "runs": [{"text": ""}], "type": "paragraph", "style": {"indentFirstLine": 133350}}, {"id": "b18", "runs": [{"bold": true, "text": "湖北安源安全环保科技有限公司", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"alignment": "center"}}, {"id": "b19", "runs": [{"bold": true, "text": "2024年1", "fontSize": 16.0}, {"bold": true, "text": "1", "fontSize": 16.0}, {"bold": true, "text": "月", "fontSize": 16.0}], "type": "heading2", "style": {"alignment": "center", "indentFirstLine": 191135}}, {"id": "b20", "type": "paragraph", "images": [{"rId": "rId21", "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABNgA...[truncated]", "widthInch": 5.95, "heightInch": 9.13}]}, {"id": "b21", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "left"}}, {"id": "b22", "type": "paragraph", "style": {"alignment": "center"}, "images": [{"rId": "rId22", "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABNgA...[truncated]", "widthInch": 5.95, "heightInch": 9.13}]}, {"id": "b23", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "left"}}, {"id": "b24", "type": "paragraph", "images": [{"rId": "rId23", "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABNgA...[truncated]", "widthInch": 5.95, "heightInch": 9.13}]}, {"id": "b25", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center", "spacingAfter": 99060, "spacingBefore": 99060}}, {"id": "b26", "type": "paragraph", "style": {"alignment": "justify"}, "images": [{"rId": "rId24", "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABSsA...[truncated]", "widthInch": 6.31, "heightInch": 6.57}]}, {"id": "b27", "runs": [{"text": ""}], "type": "paragraph", "style": {"indentFirstLine": 133350}}, {"id": "b28", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center", "spacingAfter": 152400, "spacingBefore": 152400}}, {"id": "b29", "runs": [{"bold": true, "text": "承诺书", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"alignment": "center", "spacingAfter": 152400, "spacingBefore": 152400}}, {"id": "b30", "runs": [{"text": "湖北安源安全环保科技有限公司是经中国电力建设企业协会批准的电力建设企业安全生产标准化达标评级评审机构。根据", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "中国电建集团", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "成都", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "勘测设计研究院有限公司", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "委托,我公司承担", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "中国电建集团成都勘测设计研究院有限公司", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "安全生产标准化", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "复审", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "工作。在本次评审工作中,我公司郑重承诺:", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 355600}}, {"id": "b31", "runs": [{"text": "将客观、公正、独立的开展评审工作,严格按照《电力建设企业安全生产标准化评级程序及工作要求》", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》等相关文件及标准进行评审;", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 355600}}, {"id": "b32", "runs": [{"text": "如实反映被评审单位的安全生产标准化建设状况,不出具虚假或者严重失实的评审报告;", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 355600}}, {"id": "b33", "runs": [{"text": "保守被评审单位的技术秘密和商业秘密;", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 355600}}, {"id": "b34", "runs": [{"text": "恪守职业准则,不发生其他违法、违规的行为;", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 355600}}, {"id": "b35", "runs": [{"text": "自觉接受国家能源局及其派出机构、中国电力建设集团(股份)有限公司的监督管理。", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 355600}}, {"id": "b36", "runs": [{"text": ""}], "type": "paragraph", "style": {"lineSpacing": 1.5}}, {"id": "b37", "runs": [{"text": "法人代表:", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "right", "lineSpacing": 1.5, "indentFirstLine": 355600}, "images": [{"rId": "rId25", "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAA...[truncated]", "widthInch": 1.14, "heightInch": 0.48}]}, {"id": "b38", "runs": [{"text": "湖北安源安全环保科技有限公司(公章)", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "right"}}, {"id": "b39", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "left"}}, {"id": "b40", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "left"}}, {"id": "b41", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center"}}, {"id": "b42", "runs": [{"bold": true, "text": "前 言", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"alignment": "center"}}, {"id": "b43", "runs": [{"text": "中国电建集团成都勘测设计研究院有限公司(以下简称“成都院”或“公司”)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "是", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "中国电力建设集团(股份)有限公司(以下简称“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "股份", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司”)的全资子企业,其历史可以追溯至1950年成立的燃料工业部西南水力发电工程处,建制于1955年成立的电力工业部成都勘测设计局。经过70多年发展壮大,已成为在能源电力、水资源与环境、城市建设与基础设施等领域,为全球客户提供规划咨询、勘测设计、施工建造、投资运营全产业链一体化综合服务的大型综合性勘测设计研究单位", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院致力于为全球清洁能源工程及基础设施、环境工程提供系统产品与整体解决方案和服务,技术实力始终保持行业领先地位。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b44", "runs": [{"text": "成都", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "院于2019年顺利通过电力勘测设计企业一级安全生产标准化评审,于2019年12月9日获得电力安全生产标准化一级企业证书(证书编号:ZGDIDBOY-083)。为落实《中国电力建设股份有限公司安全生产标准化建设管理办法(2019年版)》(中电建股〔2019〕122号)等文件精神,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "于", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "8", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "提出电力安全生产标准化", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "复审", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "现场评审申请,申请标准化", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "复审", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "级别为一级。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b45", "runs": [{"text": "依据《电力建设企业安全生产标准化评级程序及工作要求》(中电建协〔2014〕24号文)中关于评审期的规定,评审期为申请日前一年时间,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "提出电力安全生产标准化", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "复审", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "申请日期为", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "8", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",因此,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "本次标准化达标评级评审期为2023", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "8", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日至", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b46", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "13", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日至2024年10月17日期", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "间", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",湖北安源安全环保科技有限公司(以下简称“湖北安源公司”)成立了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产标准化", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "复审", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "评审组(以下简称“评审组”),分阶段对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行了安全生产标准化", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "复审", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "现场评审工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b47", "runs": [{"text": "评审组在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "自查的基础上,对照《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》中的八个核心要求内容进行了逐项评审。根据现场评审情况,评审组按客观、公正的原则,编制了《中国电建集团", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "勘测设计研究院有限公司安全生产标准化复审报告》(送审稿)。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b48", "runs": [{"text": "本次安全生产标准化评审工作得到了股份公司、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "领导及有关人员的大力支持和密切配合,谨此表示衷心的感谢!", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b49", "runs": [{"bold": true, "text": "目 录", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"alignment": "center", "lineSpacing": 1.5}}, {"id": "b50", "runs": [{"bold": true, "text": "1 企业概述", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "\t", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "1", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "toc1"}, {"id": "b51", "runs": [{"text": "1.1 企业简介", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "1", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b52", "runs": [{"text": "1.2 安全生产管理及绩效", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "1", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b53", "runs": [{"text": "1.3 安全生产标准化建设和持续运行情况", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "16", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b54", "runs": [{"text": "1.4 安全生产管理亮点", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "17", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b55", "runs": [{"bold": true, "text": "2 企业自评概述", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "\t", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "2", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "1", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "toc1"}, {"id": "b56", "runs": [{"text": "2.1 自评过程", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "21", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b57", "runs": [{"text": "2.2 自评结论", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b58", "runs": [{"bold": true, "text": "3 复审概况", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "\t", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "2", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "4", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "toc1"}, {"id": "b59", "runs": [{"text": "3.1 工作依据", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b60", "runs": [{"text": "3.2 目的及原则", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b61", "runs": [{"text": "3.3 复审范围", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b62", "runs": [{"text": "3.4 复审方法", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "5", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b63", "runs": [{"text": "3.5 复审过程概述", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "6", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b64", "runs": [{"bold": true, "text": "4 现场复审情况", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "\t", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "3", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "2", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "toc1"}, {"id": "b65", "runs": [{"text": "4.1 核心要求复审情况", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b66", "runs": [{"text": "4.2 复审结果", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b67", "runs": [{"text": "4.3 现场复审得分分析", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "\t", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"text": "38", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "toc2"}, {"id": "b68", "runs": [{"bold": true, "text": "5 现场复审发现的问题及整改", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "\t", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "40", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "toc1"}, {"id": "b69", "runs": [{"bold": true, "text": "6 现场复审结论", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "\t", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "44", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "toc1"}, {"id": "b70", "runs": [{"bold": true, "text": "7 附件", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "\t", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "4", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "5", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "toc1"}, {"id": "b71", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center", "indentLeft": 266700, "lineSpacing": 2.0}}, {"id": "b72", "runs": [{"bold": true, "text": "1 企业概述", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"lineSpacing": 1.5, "spacingBefore": 101600}}, {"id": "b73", "runs": [{"bold": true, "text": "1.1 ", "fontSize": 16.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "企业简介", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b74", "runs": [{"text": "中国电建集团成都勘测设计研究院有限公司为中国电力建设集团(股份)有限公司(以下简称“股份公司”)的全资子企业,其历史可以追溯至1950年成立的燃料工业部西南水力发电工程处", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "经过70多年发展壮大,已成为在能源电力、水资源与环境、城市建设与基础设施领域,为全球客户提供规划咨询、勘测设计、施工建造、投资运营全产业链一体化综合服务的大型综合性勘测设计研究单位。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b75", "runs": [{"text": "成都院致力于为全球清洁能源工程及基础设施、环境工程提供系统产品与整体解决方案和服务。公司现有1名首届国家卓越工程师、2名全国工程勘察设计大师、2名国家百千万人才专家、7名全国行业大师、15名四川省勘察设计大师在内的近7000名高素质人才队伍;国家企业技术中心、网络安全等级保护与安全保卫技术国家工程研究中心、国家能源水能风能研究分中心等5个国家级研发机构,西藏自治区水风光储能源技术创新中心等12个高端科创中心;工程设计综合甲级、工程勘察综合类甲级、咨询综合甲级、监理综合甲级(四综甲)与电力、水利水电、市政公用工程施工总承包一级等40余项资质证书", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "90多项专有技术、200多项国家与行业标准、1000多项国家级省部级奖项(一等奖2项、技术发明奖1项)、2000多项国家专利(发明专利580余项),遍布全球近60个国家和地区的700多个工程,使成都院一直保持行业领先地位。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b76", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "组织机构如图1.1-1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b77", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "justify", "lineSpacing": 1.5}}, {"id": "b78", "runs": [{"bold": true, "text": "图1.1-1 ", "fontFamily": "Times New Roman"}, {"bold": true, "text": "成都院", "fontFamily": "Times New Roman"}, {"bold": true, "text": "组织机构图", "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "center", "lineSpacing": 1.5}, "images": [{"rId": "rId27", "src": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEA3ADcAAD...[truncated]", "widthInch": 10.43, "heightInch": 4.32}]}, {"id": "b79", "runs": [{"bold": true, "text": "1.2 安全生产管理及绩效", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b80", "runs": [{"bold": true, "text": "1.2.1 目标职责", "color": "000000", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"spacingAfter": 152400, "spacingBefore": 76200}}, {"id": "b81", "runs": [{"bold": true, "text": "1)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "目标", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b82", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定并发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《QHSE“十四五”规划》(安质〔2023〕1号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "文件", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "经时任董事长黄河批准", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "了总体安全生产目标,包括", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "持续", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "保持“零死亡、零重伤”的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "生产事故控制目标等安全管理及事故控制目标7项", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",总体目标", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "是", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《中国电建集团成都勘测设计研究院有限公司“十四五”规划》的子规划,安全生产与职业健康工作目标纳入总体生产经营目标。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于印发<成都院2024年安全生产与职业健康、能源节约与生态环境保护工作目标和重点>的通知》(蓉设安质〔2024〕18号),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "文件", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "经成都院安委会审议,董事长何彦锋签发", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年安全生产与职业健康目标包括9项安全管理目标", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10项事故控制目标。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "都院制定的总体目标和2024年度安全生产与职业健康目标,均包含人员、设备设施、交通、消防、作业环境、职业健康等方面的事故控制指标和管理目标。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b83", "runs": [{"text": "成都院《安全生产目标管理规定》(SQE.01C0250),明确了成都院、安全质量环保部、分/子公司等职责与权限,明确了目标指标的制定、分解、实施、评审和考核等管理要求。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各层级管理机构对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产目标进行了分解,2024年2月22日,成都院董事长何彦锋与管理部门、区域分公司、分/子公司第一责任人签", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "订", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产目标责任书》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "42份,责任书内容包括安全生产第一责任人职责、安全生产目标、保障措施、检查考核等内容", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "切实做到安全责任“横向到边、纵向到底”", "fontSize": 12.0}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b84", "runs": [{"text": "成都院发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于印发<成都院2024年安全生产与职业健康、能源节约与生态环境保护工作目标和重点>的通知》(蓉设安质〔2024〕18号),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确2024年度将开展的7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "部分共28项", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产与职业健康重点工作,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "将", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产治本攻坚三年(2024-2026)行动、继续深化安全生产“有感领导”建设、落实传统高风险项目分工包保安全机制等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "均", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "纳入年度工作重点;成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年安全生产与职业健康工作计划,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包括签订《2024年安全生产责任书》、组织召开2024年度安全生产工作会、制定2024年安全生产费用预算等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "15大类共76项计划内容,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了各项计划的责任单位、协助单位、相关单位、实施时间等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b85", "runs": [{"text": "成都院每月对年度工作计划的完成情况", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行统计分析,填写《2024年安全生产与职业健康工作计划完成表》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "依照", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《2023年安全生产与职业健康、能源节约与生态环境保护绩效考核情况表》,组织对各管理部门、区域公司、分/子公司的安全管理目标完成情况进行考核和打分排名,并在成都院2024年度第一次安委会上进行了审议和通报。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于表彰2023年度安全生产先进单位、集体和个人的决定》(蓉设安质〔202", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〕13号),对在2023年度安全环保工作中取得突出成绩的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "新能源工程分公司等6家单位、国际工程分公司综合管理部等18个集体、李志勇等33名员工予以表彰奖励。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院制定并实施《安全生产风险抵押金管理办法》,根据年度安全生产考核情况和目标完成情况等,对安全生产风险抵押金予以返还。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院分子公司和项目部依据公司的管理规定,按计划每月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "季度、年度开展", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对安全生产目标完成情况进行检查", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "评估", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "考核", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "考核结果报安委会通过", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b86", "runs": [{"bold": true, "text": "2)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "组织机构和职责", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b87", "runs": [{"text": "成都院2023年9月15日发布《关于公司跨部门议事协调机构设置及有关事项的通知》(蓉设党字〔2023〕55号),成立了安全生产委员会,并根据机构人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "变动情况及时调整安委会成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "员,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院安委会主任为党委书记、董事长何彦锋,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "副主任为分管安全副总经理鞠其", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "凤,成员由其他班子成员和高管、职能部门负责人", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、分/子公司负责人组成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安委会工作制度与安全生产会议办法》(SQE.01C0213),明确了安委会组成、职责与权限、安委会工作制度和工作要求等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b88", "runs": [{"text": "成都院每年召开2次安委会,由安委会主任主持并签发会议纪要。2024年2月7日召开", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "了成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年度安全生产委员会第一次会议", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "会议由董事长何彦锋主持,49名安委会成员参加会议,会议议程5项,会议传达了有关安全生产会议文件精神,听取上次安委会决议落实情况汇报,对公司安全风险TOP10管控情况进行了汇报,审议了公司安全先进名单、风险抵押金返还、应急救援队伍建设等6项安全生产重大事项,安排部署了2024年一季度安全风险防范工作,董事长何彦锋对汛期安全、下阶段安全生产工作等重要工作提出了工作要求和安排部署", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "会后发布了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《公司2024年度安全生产委员会第一次会议纪要》(安质〔202", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〕第3期)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b89", "runs": [{"text": "成都院建立健全了以董事长何彦锋为主要责任人的安全行政管理体系,以总工程师夏勇为主要责任人的安全技术支撑体系", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "以赵晓峰等10名分管生产副总经理为主要责任人的安全生产实施体系", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "以分管安全副总经理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "鞠其凤", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "为主要责任人的安全监督管理体系,建立了体系框图,明确了安全生产“四个责任体系”人员组成和主要职责;成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于开展2024年安全生产与职业健康、节约能源与生态环境保护检查考核的通知》(蓉设安质〔2024〕19号", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",成都院各体系负责人参与了对各部门、区域公司、分/子公司的安全考核,考核内容包括安全生产责任制履职情况等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b90", "runs": [{"text": "成都院建立了以", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分管安全副总经理为负责人", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的安全生产监督体系,覆盖公司分管领导、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全总监、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "本部专职安全人员、分子公司二级单位安管人员、项目部的安全管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布了《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "关于向林等人职务聘免的通知》(蓉设党干〔2023〕5号)《关于欧文兵等人职务聘免的通知》(蓉设党干〔2021〕12号),聘任向林为公司安全总监,聘任刘建冰为安全质量环保部主任", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设置安全质量环保部,内设两个科室,其中安全管理室履行安全生产管理工作,配备6名专职安全管理人员:邱广东、黄凡、李豆豆、王化恶、席传鹏、邹建国。成都院安全总监、安全管理人员等均持证上岗", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院发布实施了《个人执业资格管理办法》,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "鼓励和支持安全生产监督管理人员取得注册安全工程师资质,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "刘建冰等5人取得注册安全工程师证", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b91", "runs": [{"text": "成都院党委书记、董事长何彦锋全面履职安全生产和职业健康职责,建立健全并落实安全生产责任制度,组织开展了2024年度", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产标准自查评工作,组织制定并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "签发", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "实施了73项安全管理制度", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "以及", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年安全生产与职业健康、节约能源与生态环境保护工作目标和重点、安全教育培训计划、安全生产费用预算等;在主持召开的董事长办公会、党委会和安委会会议上,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "多次", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "传达、学习习总书记", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和股份公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "关于安全生产的重要精神,并定期研究部署安全工作;带队对福建漳州项目部等项目开展安全检查工作,并提出安全管理要求。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "其他", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "班子成员认真履职,总经理张世殊在总经理办公会、安委会等不同场合,统筹协调生产经营与安全生产工作,带队开展博州光热等项目安全检查工作;副总经理鞠其凤", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "亭子口项目等5个项目", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "带队检查", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",赵晓峰对双江口项目等4个项目带队检查;安全总监向林对漳州生态治理等21个项目带队检查等。成都院各级管理部门、人员按照安全生产和职业健康责任制、安全生产“一岗一清单”的相关要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "履行其安全生产和职业健康管理职责。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b92", "runs": [{"text": "成都院2024年3月1日召开了2024年安全生产工作会,会上对2023年安全生产工作情况进行了总结,对存在的问题进行了分析,并布置了2024年度安全生产工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院每次安委会", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "会议", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "均", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对上次布置的工作完成情况进行了汇报,形成闭环", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并形成会议纪要发布。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b93", "runs": [{"text": "成都院安全监督管理人员对安全管理主要风险和隐患进行现场监督。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院制定", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年度隐患排查治理工作实施方案", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "按检查考核要求,采取“业安融合”“安全生产与综合履约检查一体化”“交叉检查”“驻点帮扶”等方式,2024年1月至9月先后组织6个检查组实施检查35次,检查覆盖29项目,其中安全风险十大项目和重点项目覆盖率100%,隐患整改率100%。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b94", "runs": [{"bold": true, "text": "3)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "全员参与", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b95", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建立健全并落实《安全生产责任制》(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "SQE.01C0201", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "),发布了《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "关于发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "<", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司总部安全生产一岗一清单", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ">", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的通知", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "》(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安质函", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〔2019〕", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "32", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号)《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "关于发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "<", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司安全生产“四个责任体系”责任人、党组织书记、相关职能部门及重点岗位履职清单》的通知", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ">", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安质函", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〔2019〕", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "23", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号)等,明确了各级机构、各级负责人、各岗位人员安全生产职责", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。2022年12月,成都院安全质量环保", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "部", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "组织各单位根据新《安全生产法》、中国电力建设集团(股份)有限公司安全生产责任制(2021版)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对相关制度文件", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行修订,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "及时更新", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b96", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "在《职业健康安全与环境2023年合规性评价报告》中,对《安全生产管理规定》《安全生产责任制》的适宜性进行了评估;在《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产管理奖惩办法", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "》(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "SQE.01C02", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "12", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")《生产安全事故管理办法》(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "SQE.01C02", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "17", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")中,明确了各单位履职情况检查、考核标准与要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各职能部门共同参与HSE目标半年度和年度考核,考核结果经", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安委办汇总,并按规定履行相关审批程序后,形成年度安全环保目标考核结果。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b97", "runs": [{"text": "成都院鼓励", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "全体员工", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "积极建言献策,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "员工积极响应,公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根据员工建言献策情况", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "不断", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "改进安全管理工作;成都院发布实施《安全生产激励约束规定》(SQE.01C0251),结合各岗位“一岗一清单”要求,由全体员工年底在OA系统填报履职情况,部门领导核查审批,实现全员有安全职责、有自查、有考核", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "每年度对各区域公司、分/子公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全考核,要求安全生产四个责任体系人员汇报履职情况,并进行考核打分,部门负责人对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "部门所有员工进行了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "考核评价。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b98", "runs": [{"bold": true, "text": "4)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "安全生产投入", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b99", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "依据《企业安全生产费用提取和使用管理办法》(财资", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〔2022〕136号", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")《中国电力建设集团(股份有限公司)安全生产费用管理办法(2024版)》(中电建股", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〔2024〕6号", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")要求,结合", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "管理实际", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "修编发布了《安全生产费用管理办法》(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "SQE.01C020", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "6", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "),明确了安全生产投入“足额提取、统筹使用、确保需要、综合监管”要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "按规定比例提取安全生产费用,合理支付,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "过程中", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根据项目进度情况及时调整费用预算、足额投入", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "保证了安全生产投入的有效实施。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b100", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建立了《安全生产费用使用汇总台账》,由安全", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "质量", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "环保部等相应业务归口管理部门对安全生产费用进行监管,并将安全投入纳入重大风险管控,规范了安全生产费用使用、审核、报销流程。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "财务管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "部按规定要求建立了安全生产费用使用台帐,做到分类管理、专款专用,保证了安全生产的需要。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b101", "runs": [{"text": "成都院印发《关于下达2024年度业务预算的通知》(蓉设计经〔2024〕7号),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年安全生产费用预算合计18245.00万元,经", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "董事长", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "何彦锋审批同意。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b102", "runs": [{"text": "成都院总部安全质量环保部、各分/子公司在QHSE系统每月上报安全生产费用使用明细清单,与财务专项会计科目核对,建立电子台账,及时、完整;成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "统计台账显示,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "截至", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年7月22", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",共使用安全生产费用8793.67万元,执行率48.2%。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b103", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《2024年度上半年安全生产费用分析报告》,对年度安全生产费用总体情况、存在问题等进行了分析,针对投运分公司等个别分/子公司上半年安全费用预算完成率偏低等情况,提出了解决预算执行偏差的措施。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b104", "runs": [{"text": "成都院在招标文件中明确安全费用管理要求,单独计列安全生产费用", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年上半年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "结算给分包单位安全生产费用7152.0508万元", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "及时、足额向分包单位支付安全生产费用", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b105", "runs": [{"bold": true, "text": "5)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "安全文化建设", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b106", "runs": [{"text": "成都院安全生产工作坚持“安全第一、预防为主、综合治理”的方针,贯彻“幸福系于安全,安全源于责任”的理念。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定并发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《企业文化理念手册》(COG.04C0101)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "将安全文化纳入了企业文化", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "倡导幸福系于安全、安全源于责任的安全价值观", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b107", "runs": [{"text": "成都院党委书记、董事长何彦锋和总经理张世殊", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等领导和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各二级单位负责人积极推进并参与企业安全文化建设,何彦锋2023年6月19日,深入福建漳州项目主讲了公司领导“安全公开课”", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院积极策划实施2024年度“安全生产月活动”", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "组织学习贯彻习近平总书记关于安全生产的重要论述,采取线上线下结合的方式,组织开展了安全生产月启动仪式、在办公区张贴了“安全生产月”主题横幅及海报,摆放了“人人讲安全、个个会应急——畅通生命通道”“典型重特大事故案例剖析”展板,开展安全生产主题教育、安全竞赛、安全生产公开课、安全生产知识宣传、事故和灾害案例警示教育、应急演练等活动,切实达到以活动促工作、以活动促安全的目的,形成浓厚的安全生产氛围。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b108", "runs": [{"bold": true, "text": "1.2.2 制度化管理", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b109", "runs": [{"text": "成都院《识别和获取适用的安全生产法律法规标准规范管理办法》(SQE.01C0214),明确了安全生产法律法规规章及标准规范获取识别", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "评价与改进、更新、执行等管理要求,明确安全质量环保部是识别与获取适用的安全生产法律法规标准规范的归口管理部门。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于发布公司环境因素、职业健康安全风险清单以及合规性评价报告的通知》(安质〔2024〕72号),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包含", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司2024年适用的法律法规清单,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "共识别获取适用职业健康安全法律28个、法规40个、国家标准72个、行业标准100个、地方规定116个,部门规章113个、境外法规127个等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院《2024年适用的法律法规清单》(安质〔2024〕72号)通过门户网站、OA流程系统和文件发文的方式逐级传达给相关从业人员。成都院购买了安全环保法律法规数据库和文本数据库,供各层级查询、收集、获取和更新。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b110", "runs": [{"text": "成都院认真贯彻落实股份公司有关安全通知、会议等要求,各级领导对安全生产工作作出重要安排部署。党委书记、董事长何彦锋强调,安全管理是企业发展的基石,各岗位一岗双责,必须高度重视。各单位要根据自己的安全责任,加强安全管理和风险防控力度,强化员工的安全意识培训,提升全员防范和应急处理能力,坚决防范遏制各类事故的发生,并签发了《关于印发<成都院深入开展安全风险隐患专项整治工作方案>的通知》。在股份公司安全生产专题视频会议后,公司党委副书记、总经理张世殊立即组织会议,就贯彻落实会议精神提出要求,要求各单位要充分认识当前安全形势的严峻性,切实做好关键时间节点的安全工作,安排部署好股份公司八项重点工作举措。分管安全副总经理对安全生产及重大事故隐患排查整治多次做出指示批示,要求各单位认真组织学习近期安全文件、会议精神,认真组织开展教训汲取“四个一”活动,认真落实项目生产“七条红线”,并按计划开展隐患排查、安全督查等工作。在股份公司2024年安全生产委员会(扩大)会议后,公司相关领导就贯彻落实会议精神提出三点要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b111", "runs": [{"text": "成都院共发布四批次现行有效安全生产制度清单,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包含", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《职业健康安全运行控制程序》《安全生产管理规定》《突发事件应急管理办法》《安全生产责任制》等73个制度/程序", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "覆盖了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "生产经营业务范围的安全生产与职业健康管理工作需要", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于对<安全生产费用管理办法><安全生产管理奖惩办法>征求意见的通知》(安质〔2023〕109号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2023年修订的6项制度发布前征求了工会、职能部门、各分子公司、项目部等人员意见", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司2023年度安全生产委员会第二次会议", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "上", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "审议", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "通过", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "经时任总经理何彦锋批准后,以正式文件形式发布。成都院编制修订的安全管理制度,在成都院OA系统中发布,各部门、单位等均能获取;2024年3月14日,成都院安", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "质", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "环部组织专项培训,对修订后的HSE制度进行了宣贯,公司总部职能部门、分/子公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项目部", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "相关", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "负责人共42人参加。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b112", "runs": [{"text": "成都院发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于发布成都院现行有效安全操作规程的通知》(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "蓉", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设安质〔2022〕65号),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "其中", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包括77项水利工程作业人员安全操作规程,77项水利工程机械设备安全技术操作规程;发布实施《水文测验安全操作规程》《现场查勘和野外调查安全作业规程》等其它操作规程7项;《造槽机安全操作规程》“四新”操作规程1项。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全操作规程", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "编制人员包括工程技术人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全管理人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设备管理人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "以及作业人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "经时任总工余挺", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分管安全副总经理鞠其凤审核,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "时任总经理郝元麟", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "批准。现有有效安全操作规程文本可在公司OA门户进行查阅获取,能够及时发放到相关工作岗位,并组织进行宣贯培训。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b113", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布并实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安全文件和档案管理办法》(SQE.01C0231)《管理体系文件编制与评审程序》(COG.03B01),明确了安全生产与职业健康规章制度、操作规程等管理体系文件的编制、评审、发布、使用、修订、作废", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "管理流程", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。成都院按勘测设计企业安全生产标准化评价标准8要素要求,建立了电子档案和纸质文档。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于开展2024年环境与职业健康安全法律法规合规性评价的通知》(安质〔2024〕72号),对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司现行", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "法律法规、安全管理制度、操作规程等进行了评估", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根据制度评审情况,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安全管理体系文件修编计划》,明确了修编文件名称,责任部门、责任人、计划完成时间等,共计划修编《安全生产管理规定》等13项安全管理制度,新编《应急救援队伍章程》等5项安全管理制度,目前正在修订过程中。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b114", "runs": [{"bold": true, "text": "1.2.3 教育培训", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b115", "runs": [{"bold": true, "text": "1)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "教育培训管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b116", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定并实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安全生产教育培训管理规定》(SQE.01C0203),明确人力资源部是公司安全生产教育培训工作归口管理部门,负责公司安全生产教育培训的实施及归口工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b117", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《公司2024年安全生产与职业健康、节能能源与生态环境保护教育培训工作计划》,培训包括上级对企业领导人员和安全管理人员培训、注册类和特种作业类培训、新员工三级安全教育培训、应急救援队伍专项培训以及分包单位现场负责人及主要管理人员轮训等内容。计划由刘建冰核定、鞠其凤批准、何彦锋签发。成都院按计划开展了相关培训计划,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "及时做好", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全教育培训记录和档案管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "工作,并对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年已经开展", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "培训项目,进行了培训效果评价。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b118", "runs": [{"bold": true, "text": "2)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "人员教育培训", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b119", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "主要负责人及安全管理人员均按要求参加培训并取得资格证书,如公司董事长", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "何彦锋", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "总经理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "张世殊", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "均取得安全生产考核合格证(A证)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "二级单位负责人", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "雷军、刘兴强", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等取得", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产考核合格证(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "B", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "证)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全总监", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "向林、安质环部主任", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "刘建冰", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、安", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "质", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "环部副主任", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "邱广东", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、专职安全管理人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "李豆豆", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "黄凡", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等取得安全生产考核合格证(C证)等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院2024年已举办的住建系统安全管理“三类人员”复训,满足再培训学时等要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "left", "lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b120", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年安全生产与职业健康、节约能源与生态环境保护教育培训工作计划包括了从业人员培训或培训考核上岗相关培训,如:特种作业人员资质培训、住建和水利系统“三类人员”资质取证和延期教育培训、新员工安全教育培训和各级负责人安全履职能力", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "培训", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",复训学时满足要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "left", "lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b121", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年新员工开展了三级安全教育培训,参训234人,培训学时满足要求,有培训课件、试卷和成绩记录、培训效果评价,培训考核结果。成都院《安全生产教育培训管理规定》(SQE.01C0203)明确了转换岗人员、变换工种人员的安全教育培训要求。成都院《安全生产教育培训管理规定》(SQE.01C0203)明确了采用新技术、新工艺、新材料、新装备、新流程时的安全教育培训要求;经现场询问,成都院查评期内无新工艺、新技术、新材料、新设备设施投入使用情况。成都院特种作业建筑电工(15人)、爆破作业人员(23人)均在有效期内持证上岗,定期复审换证。2024年5月,公司应急救援队和公司西藏区域应急救援队共计58人参加了应急救援员(五级)国家职业资格鉴定培训。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "left", "lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b122", "runs": [{"bold": true, "text": "1.2.4 现场管理", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b123", "runs": [{"bold": true, "text": "1)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "设备设施管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b124", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《设备物资管理办法》(MEM.01C0001)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设备配置标准、采购、运行、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "维修、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "搬迁拆除、报废报损", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "保密", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "监督检查等方面", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "管理流程和管理要求。成都院设备物资管理实行以公司总部为领导,以各分子公司为管理中心,以基层单位为运行主体的设备物资管理体系", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",公司综合事务部是公司设备物资及固定资产设备的归口管理部门。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《特种设备管理办法》(MEM.01C0002)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "特种设备的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "管理流程和管理要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "综合事务部负责公司特种设备管理制度的建立和完善", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对各单位特种设备管理的监督、检查和考核", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b125", "runs": [{"text": "成都院QHSE信息系统中设备设施管理模块,建立了《设备设施台账》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "特种设备及操作人员管理台账", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",特种设备操作人员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "均", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "持", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "有", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "特种设备安全管理和作业人员证。2024年成都院组织开展了设备物资专项安全检查,所检查的施工现场没有发现设备设施布置不符合安全技术要求的情况,没有发现使用临时改装的设备设施的情况。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b126", "runs": [{"text": "成都院QHSE管理系统", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "中", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司自有特种设备45台套,分包商在用特种设备105台套,无甲供设备。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "台账信息包含", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "特种设备使用单位、编号、类别、名称、特种使用证号、特种注册代码、规格型号、生产厂家等方面信息。成都院开展", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司2024年设备物资安全管理整治活动", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成立了以总经理为组长的专项工作领导小组,明确了工作计划、工作重点,并于2024年2-5月开展了设备物资安全管理自查自纠和特种设备安全培训工作,对所属各分子公司和项目部的设备物资安全管理制度执行情况、特种设备管理及操作规程执行情况、危险物资管理情况等方面工作进行了检查,对发现的175个问题隐患及时进行了整改闭合", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b127", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "适时组织对公司所属各生产经营场所自有设备设施、分包商自带设备的使用和管理情况进行监督检查。特种设备办理了使用登记,使用登记标志", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "张贴", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "于特种设备的显著位置。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b128", "runs": [{"bold": true, "text": "2)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "作业安全", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b129", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《作业安全管理办法》(SQE.01C0216),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "勘测、设计、总承包、咨询、监理、科研等项目", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "应", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根据作业性质", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "作业项目环境等,编制作业方案或施工组织方案,经审批后开展作业。作业方案或施工组织方案都制定安全生产目标,应对可能产生的环境影响、职业健康危害和安全方面进行策划和防护;对汛期作业、交叉作业、季节施工等影响生产安全的因素进行评审,作出合理的工序、工期安排", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对作业过程中的重点部位和关键环节,提出安全措施和防护要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b130", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《现场查勘和野外调查安全作业规程》(SQE.01C0245)《山地作业安全操作规程》(SQE.01C0247)等7个专业操作规程,针对不同自然环境如沼泽、沙漠、荒漠、岩溶发育地区及旧矿、老窿地区作业等环境,提出了适应环境的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "管理规定。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《公司2024年环境因素清单—项目环境因素清单》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "其中", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包含", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "地震", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "地面坍塌、泥石流、滑坡等地质灾害", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "森林草原火灾", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "台风、龙卷风、冰雹等气象灾害,并针对上述灾害", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确的应对措施。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院建立", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全管理微信", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "群,自然灾害预警信息", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "及时在工作群", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b131", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《文明施工管理规定》(SQE.01C0234)《作业安全管理办法》(SQE.01C0216),明确了现场材料与设备管理、现场设施管理、环境卫生管理及环境保护相关规定", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "作业场所应保持整洁", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "做到“工完、料尽、场地清”", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "现场材料、设备按规定的地点堆放整齐", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "临时建筑设施符合施工组织设计的规定,作业场区的安全文明施工图牌、各类警示标志等醒目、齐全。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院定期", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对生产现场与文明施工", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、生产现场安全防护", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行了检查,提出问题并及时整改闭合。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b132", "runs": [{"text": "成都院项目管理部为公司施工技术管理机构,配备了5名管理人员,成都院编制并发布了《建设业务施工技术管理办法》(DBM.05C0602),明确了施工技术方案编制、评审、审批管理流程、管理职责与要求。危险性较大的分部分项工程专项施工方案审批参照", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "国家、行业有关法律法规要求执行", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",因业主、上级单位有特殊要求的报公司总部履行审批程序。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b133", "runs": [{"text": "成都院《劳动防护用品管理细则》(SQE.02C0004),明确了劳动防护用品种类、配备标准,发放、使用、更新与报废", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等管理要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。公司、分/子公司及各项目部根据现场作业的需求及时为从业人员配备必要的职业健康安全防护设施、器具及劳动保护用品,并保证质量。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对有", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "特殊工种着装要求的员工,配置符合岗位作业防护要求的特种防护用品。严防误用或使用不符合安全要求的护具,严禁违章使用或擅自代用,满足作业人员管理要求。成都院零星劳保防护用品采购、验收、发放记录由安全环保部负责,建立了发放台账,包括领用单位、物品名称、事由、数量、领用人、时间、发放人", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b134", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《作业现场人员管理细则》(SQE.01C0229),对人员进出场管理、安全教育培训、个体防护、一般规定、特殊作业安全管理、紧急避险等进行了规定。作业前对作业人员的上岗资格、健康情况、操作技能(应知应会)等进行检查,满足作业人员管理要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b135", "runs": [{"bold": true, "text": "3)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "岗位达标", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b136", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《班组安全活动管理规定》(SQE.01C0253),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "班组建设以岗位达标为依托,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "开展“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "学习国家和政府的有关安全生产法律法规", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "定期进行安全知识的学习培训", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "讨论分析典型事故案例", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行生产异常情况紧急处理能力的培训和演练", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "岗位安全技术练兵、比武活动", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "查隐患、反习惯性违章", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "活动", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b137", "runs": [{"text": "成都院202", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年4月16日以《关于印发《成都院安全生产治本攻坚三年行动实施方案(2024—2026年)》的通知》(蓉设安质〔2024〕23号),对班组安全建设及岗位达标工作进行了部署安排,明确组织开展勘测外业、科研实验、总承包(施工)作业、电(水)厂运营维护等操作类岗位人员岗位达标活动。成都铁路港商品展示交易中心EPC总承包项目结合现场施工作业人员情况,组织开展了安全知识培训工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "现场入场人员教育时,开展了安全交底和危险源识别。项目在施工期间,督促各班组开展班前教育工作,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "班前会", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "上强调", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "用电安全要求、机械伤害预防等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b138", "runs": [{"bold": true, "text": "4)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "相关方", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b139", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《供应商管理办法》(DBM02C0109),明确了分包商、承包商有关管理职责、工作内容、管理流程等方面内容。安全质量环保部负责提出制度修改意见", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "参加分包商有关安全环保方面不良行为处理。成都院《相关方管理规定》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "专业分包和劳务分包、施工分包单位准入、分包动态管理、动态管理、考核评价与责任追究等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包含相关方的资质预审、选择、作业人员培训、作业过程检查监督、提供的产品和服务、绩效评估、续用及退出机制等相关内容。2024年5月20日,公司发布2023年度供应商评价结果及合格供应商名单。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b140", "runs": [{"text": "成都院对承包商、供应商的资质条件进行审查,符合国家有关企业资质管理规定和行业有关工程分包、采购等管理规定。成都院建立了合格供方库,包括工程施工类、设备物资类和服务类,2023年度被评价为不合格供应商共有2家,已按照公司供应商管理办法列入了黑名单。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b141", "runs": [{"text": "成都院按规定与分包商签订工程分包合同和安全生产协议,如成都院《汉源县城流沙河生态修复工程》(合同编号:HYSTBSG-202301),单独签订了安全生产协议,协议包括安全目标、双方责任和义务,有关安全生产与职业健康、能源节约与生态环境保护内容齐全。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对相关方机构设置、教育培训等工作进行了检查", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "审查了承包商编制的安全作业(施工)方案,安全技术交底记录等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "督促承包商识别风险、采取措施、排查治理隐患", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b142", "runs": [{"text": "成都院2024年4月24日组织开展了2023年度供应商履约评价工作,对供应商产品、服务及安全管理情况进行了综合评价,共评价供应商1225家,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "以《关于发布公司“2023年度供应商评价报告”和“2023年度合格供应商名单”的通知》进行了发布,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "将", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "合格供应商录入", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "到", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院“采购管理系统”,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "统一管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b143", "runs": [{"bold": true, "text": "5)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "职业健康", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b144", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "依据《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "中华人民共和国职业病防治法", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "》《工作场所职业卫生监督管理规定》等国家法律法规和上级有关规定,发布实施了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《职业健康管理办法》(SQE.02C0001),管理制度内容涵盖工作目标、职责与权限、工作要求、职业危害告知与警示、职业危害申报等内容,成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建立", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《职业病危害因素接触人员清单》,共计450人,主要职业病危害因素包含粉尘、噪声、高原,重点关注人员350名。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "硬梁包项目部建立了《硬梁包项目部设代处人员职业健康检查档案》《硬梁包项目部职业病危害因素接触人员清单》《硬梁包项目部职业健康危害因素清单及控制措施》,职业健康管理符合要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b145", "runs": [{"text": "成都院发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于发布公司2024年环境因素、职业健康安全风险清单以及合规性评价报告的通知》(安质〔2024〕72号),评价结论“公司收集的法律法规体系逐步完善,现行管理措施或管理方案与适用法律法规及有关要求一致,公司各单位以及员工均能按照相应的法律法规和管理措施要求开展各项活动,未发生职业健康安全事故,无违法违规现象,无单位和个人投诉,安全生产工作成效显著。”", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b146", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "签订", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "员工劳动合同", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "时", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",合同中", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包含", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "劳动保护、劳动条件和职业危害告知与防护条款。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院在作业现场按规定要求设置职业危害因素告知卡,如", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院九水公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "职业病危害告知卡,对噪声危害进行了公示,公示内容满足要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "YX勘探项目部在PD405洞口设置了粉尘危害告知牌,在电焊作业加工区设置了粉尘危害和弧光危害告知牌;省勘院在平硐设置了粉尘、噪声危害告知牌。2024年4月29日,成都院开展了职业健康培训,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "劳动者进行职业危害宣传和警示教育,共75人参加。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b147", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "按规定要求进行职业病危害申报,并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "为从业人员提供符合职业健康要求的工作环境和条件", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "如成都院天源公司职业病危害检测数据显示,现场噪声检测数据满足要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b148", "runs": [{"bold": true, "text": "1.2.5 安全风险管控和隐患排查治理", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b149", "runs": [{"bold": true, "text": "1)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "风险辨识与评价", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b150", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安全风险管控管理办法》(SQE.01B05)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "规定了公司、分子公司、各管理部门、各项目部、电厂、污水厂安全风险辨识、评估、控制的职责", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "应及时组织开展全方位、全过程", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全风险", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "辨识工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",做到系统、全面、无遗漏,并持续更新完善。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b151", "runs": [{"text": "成都院按规定要求开展了安全风险辨识工作,并发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于发", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "布公司2024年环境因素、职业健康安全风险清单以及合规性评价报告的通知》(安质〔2024〕72号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "其中包含", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "《公司2024年危险源辨识、职业健康安全风险清单》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "辨识范围包含室内办公活动、境外业务、公共卫生、综合管理、勘测设计咨询项目、建设项目、投资与运营项目等,能够覆盖成都院所有生产经营领域,辨识范围全面", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",然后", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "运用风险矩阵分析法对所有辨识出的风险进行了评价", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "确定安全风险等级。安全风险等级", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分为重大、较大、一般、低四级,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对应", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "颜色标示", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "为", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "红、橙、黄、蓝。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对不同等级的风险均制定了控制措施,通过对风险状态(新增、持续、恶化、减弱、消除)的判断,实现了差异化动态管理。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "同时,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各项目部、电厂、污水厂每月进行风险动态评估,经安全月度会议审核通过后,在重点部位张贴发布,告知从业人员。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b152", "runs": [{"bold": true, "text": "2)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "重大危险源管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b153", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《重大危险源及危险化学品管理办法》(SQE.01C0218)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "职责与权限", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包括", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "重大危险源分级、辨识", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "评价", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "危险化学品采购", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "运输、储存", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "使用", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等的管理要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "依据《危险化学品重大危险源辨识》(GB18218-2018)标准", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对公司本部、阿尼桥炸药库、龙泉污水处理厂", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等处", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "存在的盐酸、硫酸、硝酸、乙醇、炸药", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对公司各项目现场存在的汽油、柴油等危险化学品进行了全面的危险源辨识,判定公司不存在重大危险源。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b154", "runs": [{"bold": true, "text": "3)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "隐患排查", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b155", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《生产安全事故隐患排查治理管理办法》(SQE.01C0219)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各级", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "单位隐患排查、治理和风险防控的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "责任部门", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "主要负责人", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各级管理人员的责任", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "以及", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "隐患分级、分类标准、排查方法、范围、治理、举报奖励等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "管理要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",实现隐患排查、登记、整改、评价、销账、报告的闭环管理。成都院通过QHSE系统建立并推行了安全隐患举报平台", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b156", "runs": [{"text": "成都院发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于开展2024年安全生产与职业健康、节约能源与生态环境保护检查考核的通知》(蓉设安质〔2024〕19号),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "文件", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "由", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "主要负责人", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "何彦锋", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "签发", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "其中", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包括", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司2024年度隐患排查治理工作实施方案,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确了2024年度隐患排查治理工作的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "组织领导、主要任务、进度安排和工作要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b157", "runs": [{"text": "2024年1月到6月成都院组织各类检查和隐患排查,共排查225条隐患,均已整改验收完成,形成闭环。如针对2024年6月26日至28日《成都院安全环保专项督导检查报告》中,对漳州总包项目部所指出的问题与不足,项目部2024年7月12日提交《关于漳州高新区绿色发展生态治理项目工程总承包(EPC)项目部成都院HSE检查问题整改情况的报告》,确认所有问题均已完成整改,并附证明图片;整改报告经建设分公司安环部主任杨先刚、安全总监王丰签署同意后,由成都院安全质量环保部邱广东签署同意。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b158", "runs": [{"text": "成都院QHSE系统中风险隐患模块,共包含1049条隐患。隐患台账包含归属部门、隐患描述、隐患级别、隐患类别、排查日期、检查对象、整改期限、整改销号情况等,对隐患进行动态统计,并通过QHSE系统中风险隐患模块向从业人员通报,此外还在每年的年度安全工作报告中进行通报。同时,成都院每月通过股份公司HSE系统上报安全隐患排查治理月报表,对治理情况进行统计分析。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b159", "runs": [{"bold": true, "text": "4)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "变更管理", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b160", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安全生产变更管理规定》(SQE.01C0252)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "明确各单位在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "组织机构、人员、施工工艺、施工技术、设备设施、作业过程及环境发生变化时,应制定变更计划", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对变更过程及变更所产生的风险和隐患进行辨识、分析和评价,根据变更内容制定相应方案及措施,并对相关单位和人员进行交底。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "特别明确了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设计业务应严格", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "执行", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司设计变更管理制度规定的审批、验收等控制程序", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "如", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《亭子口灌区一期工程口龙充水渠营業沧隆洞出口~文子垭隧洞进口暗渠段设计变更》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对设计变更的影响从施工组织、施工周期、工程占地、工程投资等方面进行了评价", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "文件由", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "王丽婷", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "编写", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "梁清樾", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "校核", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "郭业水", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "审查", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "翟配松核定", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "评审结论:设计变更后能够保证工程安全和施工安全要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b161", "runs": [{"bold": true, "text": "5)预测预警", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b162", "runs": [{"text": "成都院发布实施《安全预测预警管理规定》(SQE.01C0258),明确了风险预测预警防控对象、风险预测预警防控的范围、风险预测预警防控内容、风险预测预警防控工作程序和方式。安全质量环保部是安全预测预警的责任部门,组织公司的安全预测预警和风险控制工作;各分/子公司负责组织本单位的安全预测预警和风险管控工作,督促项目部落实安全预测预警和风险管控措施落实。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b163", "runs": [{"text": "成都院建立了预警信息发布机制,及时进行预警信息发布,并提出应对措施和工作要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分管安全领导鞠其凤2024年5月11日在成都院安全环保管理平台(微信群)中发布的四川暴雨蓝色预警,指出公司在川内业务众多,尤其是川西区域。请各单位高度关注雨季安全,包括但不限于:项目工地安全、营地安全、出行交通安全,项目现场、技术踏勘及项目检查,切实做好相关预案及防范措施,确保人员安全、交通安全、工程安全。各分/子公司安全员及时回复。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b164", "runs": [{"bold": true, "text": "1.2.6 应急救援", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b165", "runs": [{"text": "成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于公司跨部门议事协调机构设置及有关事项的通知》(蓉设党字〔", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2023", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〕", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "55", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号),明确", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司应急领导工作小组人员组成,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "党委书记、董事长何彦锋任", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "应急领导小组组长。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "按", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "有关规定开展了安全风险评估和应急资源调查工作,编制了《安全风险评估报告》《应急资源调查报告》等文件,建立了成都院应急预案体系", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "包括《突发事件综合应急预案》《极端天气应急预案》等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "15", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "个专项应急预案", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项总部的现场处置方案《中毒窒息现场处置方案》等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "24", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项现场处置方案,应急预案体系覆盖了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司业务范围内", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "可能发生的事故类型,并与", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "股份公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的应急预案相衔接。成都院发布《关于印发<安全风险管控管理办法>等4项管理体系文件的通知》(蓉设安质〔2021〕608号),成都院应急预案汇编经", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "时任", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "董事长黄河签发", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并向中国", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "股份公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安环部和成都市温江区应急管理局进行了备案。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b166", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于调整公司应急救援队队员的通知》(蓉设安质〔", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2022", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〕", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "61", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号),建立了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "61", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "人组成的应急救援队;其应急救援队伍", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "A", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "队", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "33", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "人,主要承担地震、泥石流、洪水、山体滑坡(崩塌)、堰塞湖等自然灾害应急抢险救灾工作;应急救援队伍", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "B", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "队", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "28", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "人,主要承担交通、消防、设备、食品安全、人身伤害事故、环境事件等突发事件应急抢险救灾工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b167", "runs": [{"text": "成都院建立了安全生产第一责任人、分管安全负责人、工程技术岗、管理岗、应急办公室负责人应急处置卡等,包括了事故类型、应急职责、处置程序、应急措施、紧急联系人及联系方式,并张贴在工作现场。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b168", "runs": [{"text": "成都院根据应急预案应急物资装备清单要求,建立了应急物资清单", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "开发使用“后勤保障资源一体化共享平台”,建立了7个应急物资仓库台账,明确了物资名称、规格型号、库存状态、库存数量等,在平台中实现动态管理。应急物资均按要求进行了定期维护保养,形成了保养记录。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b169", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "组织开展应急预案知识、技能培训", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "培训效果评估", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院2024年4月-5月组织开展了应急救援员取证培训,培训采取线上线下相结合方式,公司应急救援队成员参加了培训,培训内容包括应急救援知识,应急抢险技能等。成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年应急演练工作计划,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根据本单位风险防控重点和演练计划开展应急演练,如2024年6月25日组织开展了地震及地质灾害综合演练,2023年12月15日开展了火灾事故应急演练,均为实战演练", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b170", "runs": [{"text": "应急演练结束后,均对演练情况进行了评估", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "针对问题,逐条制定了改进措施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院2023年12月向", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "股份公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "提交了《成都院2023年应急管理工作总结》,总结了安全生产月应急演练专题行活动开展情况、应急管理制度及应急预案体系建设情况、应急机构建设情况、应急能力建设情况、应急教育培训宣传情况、应急演练情况,指出了工作中存在的问题及应对措施。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b171", "runs": [{"bold": true, "text": "1.2.7 事故管理", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b172", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "生产安全事故管理", "color": "000000", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "办法", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "》(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "SQE.01C0217", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "明确了事故报告的时限", "color": "000000", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "、", "color": "000000", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "程序、方法、", "color": "000000", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "内容等", "color": "000000", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": ",", "color": "000000", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "明确了安全生产和突发事件安全信息管理要求、信息报送的责任人及报送程序等,要求各单位严格按照有关规定报告生产安全事故,做到准确、及时和完整。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b173", "runs": [{"text": "评审期内,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "无生产安全事故发生", "color": "000000", "fontSize": 12.0, "fontFamily": "仿宋_GB2312"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b174", "runs": [{"bold": true, "text": "1.2.8 持续改进", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b175", "runs": [{"text": "成都院印发《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安质〔2024〕20号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "文件", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "由党委书记、董事长何彦锋进行了签批发布,对成都院2024年安全生产标准化持续深化工作进行了部署安排,明确了总体思路、组织领导、工作内容(工作依据、工作范围、工作步骤和程序)和工作要求等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b176", "runs": [{"text": "成都院2024年9月18日发布《关于发布<中国电建集团成都勘测设计研究院有限公司2024年度安全生产标准化自评报告", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ">", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的通知》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "蓉设安质〔2024〕56号", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",将自评结果在OA系统公告各部门单位、员工,并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "要求", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对照报告内容对本单位安全生产工作进行再梳理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对自评发现的问题形成整改闭合", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b177", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布实施", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安全生产标准化自评管理办法》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "S", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "QE.01C0223", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "),", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "将安全生产标准化自评和按考评结果改进、考评合格量化指标作为主要绩效指标", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院根据《安全风险抵押金管理办法》,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司202", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年度安全生产委员会第一次会议", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "上", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",审定了公司202", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年度安全生产风险抵押金返还方案;根据公司《安全生产管理奖惩办法》,经考核评比,成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "印发", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于表彰2023年度公司安全生产先进单位、集体和个人的决定》", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "蓉设安质〔2024〕13号", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",对在2023年度安全环保工作中取得突出成绩的新能源工程分公司等6家单位、国际工程分公司综合管理部等18个集体、李志勇等33名员工予以表彰奖励。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b178", "runs": [{"bold": true, "text": "1.3 安全生产标准化建设和持续运行情况", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"alignment": "left", "lineSpacing": 1.5}}, {"id": "b179", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "于2015年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日获得国家能源局安全生产标准化一级企业达标证书,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "取得证书后,继续深入开展安全生产标准化建设工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2019年公司顺利通过电力勘测设计企业一级安全生产标准化评审,于2019年12月9日获得电力安全生产标准化一级企业证书(证书编号:ZGDIDBOY-08", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b180", "runs": [{"text": "201", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "9", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年以来,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "按照", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "股份公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《安全生产标准化建设管理办法》《电力勘测设计企业安全生产标准化评级标准》要求,主动地、有目的地、有策划地持续深入开展安全生产标准化自查工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2日,党委书记、董事长", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "何彦锋", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "批准了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安质〔2024〕20号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",方案明确了工作目标、组织机构和职责、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "工作依据、工作程序、时间节点安排、主要工作内容及成果", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等;", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "按《", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年度安全生产标准化", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建设暨安全环保提升专项行动", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "》要求,开展了安全生产标准化工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "主要负责人主持召开", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "第一次安委会会议,公司全体在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "蓉", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "领导出席会议", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "在随后召开的年度安全生产工作会上,确定了将安全生产标准化自评工作列为年度", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "七", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项重点工作之一,提出了“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "以安全生产标准化复审年为契机,将安全管理评价与标准化工作相结合,按照“帮扶、指导、查评”相结合的思路,开展点对点的现场指导和帮扶,保持电力安全生产标准化一级达标水平”", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b181", "runs": [{"text": "2024年度自评工作推进过程中,公司党政领导班子多次在党委会、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "董办会、总办会", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "上听取公司安全生产工作开展情况汇报和安全生产标准化实施过程中的问题反馈,并提出相关安全生产工作要求,全面推动安全生产标准化各项工作落实落地。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "坚持过程管控、坚持问题导向,将安全生产标准化不断向项目现场延伸深化,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "通过项目自查、二级单位自查、成都院自查及抽查的形式,进行了现场检查、制度规程及安全管理内业资料检查", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "自查情况显示,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "本部各部门、子公司、项目部均能够按体系要求,将体系的各项管理制度、措施贯彻落实到整个企业安全生产管理中去,使体系标准的各要素均能体现到日常安全生产工作中,切实实现安全生产标准化在项目现场的有效落地,整体提高了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "现场安全管理水平和工作效率", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产各项工作符合国家、行业及地方现行有关的法律法规和标准规范的要求,符合行业《电力勘测设计企业安全生产标准化评级标准》要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b182", "runs": [{"text": "公司严格遵照“不安全不生产,先安全后生产”原则开展安全管理工作。党委书记、董事长何彦锋多次强调,安全管理是企业发展的基石,各岗位一岗双责,必须高度重视。各单位要根据自己的安全责任,加强安全管理和风险防控力度,强化员工的安全意识培训,提升全员防范和应急处理能力,坚决防范遏制各类事故的发生。公司总经理张世殊组织召开会议,要求各单位要充分认识当前安全形势的严峻性,切实做好关键时间节点的安全工作,公司要及时制定、印发工作方案,安排部署好股份公司八项重点工作举措,认真组织开展教训汲取“四个一”活动,认真落实项目生产“七条红线”。根据公司领导安排部署,公司印发了《关于印发<成都院深入开展安全风险隐患专项整治工作方案>的通知》(蓉设安质〔2024〕52号)《关于进一步加强四季度安全生产管理暨强化重大事故隐患排查治理工作的通知》(安质〔2024〕125号),通知部署了“全面整治重大事故隐患,强化重点环节安全管控”事项,要求各单位要结合正在开展的深入开展安全风险隐患专项整治工作,树立“隐患就是事故”理念,进一步严格落实股份公司安全生产“十项重点工作”检查工作。公司组织内部专家编制印发了《管生产必须管安全,不安全不生产实施细则》《成都院班组生产组织及安全管理实施细则》等对“不安全不生产”进一步细化了工作内容、考核奖惩等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b183", "runs": [{"text": "截至目前,成都院安全生产标准化运行实施中未出现突出问题。20", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "24", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年上半年,成都院根据绩效评价结果,对有关单位和岗位兑现奖惩,标准化达标评级标准作为考核部门和项目部的主要依据,能够按照标准化要求持续改进,不断提升。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院2022年、2023年连续两年荣获股份公司安全生产先进单位。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b184", "runs": [{"bold": true, "text": "1.4 安全生产管理亮点", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b185", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "高度重视安全生产标准化工作,将安全生产标准化与企业安全生产治本攻坚三年行动、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "深入开展", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "风险隐患专项整治", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "行动", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等重点工作相结合,形成安全管理创新和管理亮点", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "如下", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ":", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b186", "runs": [{"bold": true, "text": "1)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "思想引领、高位推动,不断夯实安全生产责任体系", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b187", "runs": [{"text": "成都院始终坚持以习近平新时代中国特色社会主义思想为指导,时刻将总书记的重要指示批示精神,作为安全生产工作的根本遵循,视为一以贯之的首要政治责任和使命任务。持续抓好思想引领,主要领导亲自带队开展安全督导、参加应急实战演练、组织安全警示教育、赴长沙参加安全专题培训、与四川能源监管办共商能源行业安全高质量发展,亲自部署复工复产、防汛抢险、应急处置等重点工作。组织各单位主要责任人多次开展“安全生产公开课”等活动、专家引导解析学习与网络培训、观看警示教育片。高位推动安全工作,多次召开公司级安全生产会议,研究部署复工复产、专项整治、防洪度汛、森林防火等专项工作,为防控重大风险,全面做好安全生产工作提供了根本保障。持续加强安全队伍能力建设,首次开展安监队伍专题党课,组织开展分/子公司安全总监述职工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b188", "runs": [{"bold": true, "text": "2)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "治理隐患、防控风险,扎实推进双重预防体制机制建设", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b189", "runs": [{"text": "成都院始终坚守“不安全不生产”的基本原则,以安全风险TOP10管控和专项整治为抓手,多措并举抓好贯彻落实。分层级、分领域、分专业开展安全风险TOP10管控,通过每月动态监管、制定安全监管明白卡、开发信息化管理平台、推广隐患举报平台、试行安全积分超市等方式,严控12大类、84项重大/较大安全风险,进一步夯实了安全风险管控基础。针对新、特、难等类型项目构建标准化管理体系文件,编制《重点业务安全风险管控指导书(试行)》《设计牵头的联合体EPC总承包项目安全管理工作指导书(试行)》,量化各类项目安全风险值,建立严查严管隐患清单,实现安全风险有效管控。每年成立驻点帮扶指导工作小组,派出安全管理和工程技术专家百余人次,前往重点风险项目开展现场指导,实现每季度公司安全风险十大项目检查指导覆盖率100%,形成帮扶成果供所有项目分享使用。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b190", "runs": [{"bold": true, "text": "3)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "教育引路,文化引领,持续打造富有特色的企业安全文化", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b191", "runs": [{"text": "成都院高度重视安全文化建设。2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "023", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年,组织开展了首届安全生产管理论坛和安全风险TOP10管控劳动竞赛,设置外部安全专家大讲堂、安全生产标准化提升等五个主题分论坛,聚焦“水能砂城数”业务方向,充分交流先进安全管理经验,激发公司及各项目安全管理新思想、新理念。16支队伍、403个单位/项目、4500余人参加竞赛", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "活动", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",在“比学赶超”的氛围中掀起了公司安全文化发展新热潮。以开展“安全生产月”“全国防灾减灾周”等活动为契机,组织开展了主题宣讲、警示教育、安全培训、应急演练等活动,通过安全名词你比我猜、安全隐患大家找、安全谜语竞猜、演讲、小品、相声、快板、情景剧、重点业务作业指导书等方式,积极构建全员参与的安全文化氛围。2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "024", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年,公司组织开展 “安全生产月”暨“安康杯”竞赛,竞赛以习近平总书记关于安全生产重要论述、安全生产治本攻坚三年行动、重大事故隐患判定标准、安全工作“十问”等为重点,公司各单位积极响应、精心组织、广泛宣传,经过两周的激烈角逐,累计传播知识点10万余条,访问量3.2万余次,参赛量1.3万余人次,参赛人数2236人,在公司上下、项目现场掀起了全员学习安全知识的文化新热潮。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b192", "runs": [{"bold": true, "text": "4)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "勇于担当、攻坚克难,全力做好应急队伍建设及抢险救灾工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b193", "runs": [{"text": "成都院勇担社会责任,不断提高自身应急管理能力,全力以赴防灾减灾救灾,彰显央企责任担当。应急救援队成立以来,成都院先后派出技术专家参加丹巴关州水电站水淹厂房事故抢险、芦山地震应急抢险、贵州防汛抢险、泸定地震抢险救灾、京津冀洪水灾害损失评估、金阳8·21灾害现场调查等百余次", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "专", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "家技术支持工作,收获应急管理部、四川省地质灾害指挥部办公室、四川减灾委办公室及业主单位数十封感谢信。2023年,成都院第一时间协调、第一时间安排应急救援队员和相关技术专家先后8次参加防灾减灾救灾工作,如5月11日紧急派遣地质专家王勇赶赴松潘县支援滑坡抢险,协调派遣3名技术专家协助指导四川省防汛工作等。2024年,公司多次派遣专家参加相关抢险救灾工作,响应地方政府要求参与抢险救灾工作。应急管理部先后两次调研公司应急管理工作,成功获批应急管理部工程救援应急勘测队,并获3190万经费支持。公司积极创建西藏区域应急救援队,将集团应急专家队伍建设推上新高度。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b194", "runs": [{"bold": true, "text": "5)融会拓展,首次实现国家水利行业和电力行业安全生产标准化一级双达标", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b195", "runs": [{"text": "除电力勘测设计企业安全生产标准化外,公司积极根据业务拓展打造其他业务板块安全生产标准化建设,将电力和水利标准化有效融合,进一步推动公司安全生产标准化走深走实。根据公司水利业务高质量发展需要,2024年初,公司启动水利水电施工企业安全标准化创建事宜。面对电力勘测设计和水利水电施工企业标准差异大、贯标时间短、多项前置条件亟待解决、建设项目与施工项目内业现场管控差异大等难题,公司详细拆分了实施方案和工作计划,划定149项工作任务,安排专人逐项跟踪落实,建立了“周例会、周通报”制度,累计召开了推进会十余次;通过“台账化管理、挂表式作战”的模式,坚持一周一调度,每月见成效;公司紧急组织开展安责险购买、施工项目职业危害在线申报、设备设施介入式管理、现场水利水电安全标准化工地打造等系列工作,集中优势资源,投入安全专家40余人,前往项目20余次帮扶督导建立标准化体系。公司组织总部各部门、建设分公司亭子口项目部、城乡分公司石棉县下坪项目部、二滩国际横山项目部多次以高分的成绩通过线上资料评审、交叉技术核查、答辩汇报、水利部现场核查等各类评审工作,最终成功摘得硕果。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b196", "runs": [{"text": ""}], "type": "paragraph"}, {"id": "b197", "runs": [{"bold": true, "text": "2 企业自评概述", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"lineSpacing": 1.5, "spacingBefore": 101600}}, {"id": "b198", "runs": [{"bold": true, "text": "2.1 自评过程", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b199", "runs": [{"text": "为认真贯彻落实《关于印发<中国电力建设股份有限公司安全生产标准化建设管理办法(2019年版)>的通知》(中电建股〔2019〕122号)和《关于印发<中国电力建设集团(股份)有限公司2024年安全生产与职业健康、节约能源与生态环境保护工作要点>的通知》(中电建股安环〔2024〕6号)等相关文件要求,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安质〔", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "〕2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",对安全生产标准化自查评和复审工作进行布置和安排,并", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "按照", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "方案的要求有序组织和实施。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年安全生产标准化自查工作分为以下", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "五个", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "阶", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "段进行:", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b200", "runs": [{"text": "1)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "前期策划", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b201", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "及各二级生产部门、项目部逐级成立2024年度安全生产标准化自评工作领导机构、工作机构,结合各自业务实际,组织策划编制并发布各级年度自评工作实施方案,做好自评职责分工及宣传动员工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b202", "runs": [{"text": "各二级生产部门及下辖机构结合", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2023年度安全生产标准化自评报告及安全检查情况,在2024年度工作部署策划和实施过程中,举一反三,系统改进,严格按照标准规范要求,规范开展各项工作,防止同类问题重复出现。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b203", "runs": [{"text": "2)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "专题培训", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b204", "runs": [{"text": "成都院邀请外部专家,组织各分子公司、项目部安全管理人员参加安全标准化复审专题培训暨启动会,进一步明确复审工作内容、工作要求及工作流程,增强各单位开展安全生产标准化复审工作的针对性和有效性。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b205", "runs": [{"text": "3)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "自查自纠", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "阶段", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b206", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各单位坚持“全面覆盖、分级实施、注重实效、持续改进”的原则,通过自我检查、自我纠正、自我完善,扎实有效开展年度安全生产标准化各项自评工作,构建安全生产绩效持续改进的长效机制。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b207", "runs": [{"text": "成都院安排", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "部署各部门开展安全生产标准化自查自纠工作,并对各部门编制和提交自评报告提出具体工作要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "组织对各单位编制和提交的自评报告进行审核,并以正式通知进行公示。抽查各分子公司、项目部自评情况,编制公司2024年安全生产标准化自评报告,并督促问题所属单位按期整改完毕。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b208", "runs": [{"text": "各", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分/子公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "发布通知,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对所属项目部工作开展情况进行检查、指导,开展本部自评。并规划好项目选点,协助公司组织专家对项目进行咨询、自查评。组织对所属项目自查评报告进行评审、打分、排名、通报,并提交查评过程中发现的问题整改闭环资料。在本部自查、项目检查和报告评审的基础上,按期形成自查评报告并提交公司。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b209", "runs": [{"text": "工期半年以上的在建项目按照上级要求及本单位自评工作方案部署,开展安全生产标准化自查自纠工作,编制并向部门提交项目部自评报告。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b210", "runs": [{"text": "4)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "内审及整改阶段", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b211", "runs": [{"text": "公司级抽查:公司委托第三方咨询机构,按照股份公司有关要求抽取7个不同业务类型的项目现场检查项目部,指导现场自评工作,并对项目部自评报告的真实性、完整性、符合性独立开展现场审核,审核结果纳入对部门自评工作的评价。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b212", "runs": [{"text": "分/子公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "级抽查:按不低于部门项目总数50%的比例,抽检所辖项目现场的安全生产标准化工作开展情况。组织召开专题评审会议,对所辖项目和下辖机构的自评报告进行评审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各分/子公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "由部门", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分管安全副总/安全总监", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "主持会议,评审排名、打分,评审意见等结果在部门内正式通报。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b213", "runs": [{"text": "成都院各级单位针对2024年现场评审过程中发现的问题进行整改,提出整改措施,明确整改时间和责任人,并举一反三,持续改进安全生产标准化建设工作", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b214", "runs": [{"text": "5", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "报告撰写", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b215", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对自评发现问题的整改闭合情况进行验证,对公司安全生产标准化的实施情况进行绩效评定,验证各项安全生产制度措施的适宜性、充分性和有效性,检查安全生产目标、指标的完成情况,提出改进意见。根据专家查评、整改及绩效评定情况,编制发布", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年度安全生产标准化自评报告。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b216", "runs": [{"text": "从审核总体情况来看,各单位基本能认真贯彻执行", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "关于安全生产的各项管理要求,积极推进安全生产标准化建设自查工作。各二级单位及时提交了自查工作报告,自查范围涵盖了各单位本部及所属在建项目,自查内容覆盖范围全面。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b217", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根据各二级生产单位自评报告审核情况,结合安全环保部抽查各二级生产单位、项目部安全生产标准化工作情况,编制", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年度安全生产标准化自评报告。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b218", "runs": [{"text": "6)持续改进", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b219", "runs": [{"text": "公司根据自评结果和问题情况,组织各单位整改,并闭环验证。针对存在的共性问题,进一步制定针对性安全管控措施,将安全管理要求和力度层层加强。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b220", "runs": [{"bold": true, "text": "2.2 自评结论", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b221", "runs": [{"text": "成都", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "院成立安全生产标准化自评工作领导小组,依据《中国电力建设股份有限公司安全生产标准化建设管理办法》《电力勘测设计企业安全生产标准化评价标准(2020年版)》,制定了", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安环〔2024〕20号),组", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建自评小组对公司安全生产标准化开展情况进行了检查。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"indentLeft": -50165, "indentRight": -32385, "lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b222", "runs": [{"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024年安全生产标准化复审自评结论:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "满足电力勘测设计企业安全生产标准化一级企业的条件和要求。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"indentLeft": -50165, "indentRight": -32385, "lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b223", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "left", "lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b224", "runs": [{"text": ""}], "type": "paragraph", "style": {"spacingBefore": 12700}}, {"id": "b225", "runs": [{"bold": true, "text": "3 复审概况", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"lineSpacing": 1.5, "spacingBefore": 101600}}, {"id": "b226", "runs": [{"bold": true, "text": "3.1 工作依据", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b227", "runs": [{"text": "1)《关于推进电力安全生产标准化建设工作有关事项的通知》(国能安全〔2015〕126号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b228", "runs": [{"text": "2)《电力勘测设计企业安全生产标准化实施规范》(DLT 2681-2023)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b229", "runs": [{"text": "3)《关于印发<中国电力建设股份有限公司安全生产标准化建设管理办法>的通知》(中电建股〔2019〕122号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b230", "runs": [{"text": "4)《关于进一步加强安全生产标准化建设有关工作的通知》(中电建股安环〔2022〕27号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b231", "runs": [{"text": "5)《电力勘测设计企业安全生产标准化评价标准(2020年版)》(中电建股安环〔2020〕19号", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b232", "runs": [{"text": "6)《中国电力建设集团(股份)有限公司2024年安全生产与职业健康、节约能源与生态环境保护工作要点》(中电建股安环〔2024〕6号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b233", "runs": [{"text": "7)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "《关于深入开展电力安全生产标准化建设暨安全环保提升专项行动的通知》(蓉设安质〔2024〕20号)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b234", "runs": [{"bold": true, "text": "3.2 目的及原则", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b235", "runs": [{"text": "1)坚持“安全第一、预防为主、综合治理”的方针,全面加强企业安全管理,健全规章制度,完善安全标准,提高企业安全生产技术水平,夯实安全生产基础。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b236", "runs": [{"text": "2)对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产标准化体系运行现状是否符合一级企业要求进行复审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b237", "runs": [{"text": "3)本次达标评级评审依据《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》(中电建股安环〔2020〕19号)《关于印发<中国电力建设股份有限公司安全生产标准化建设管理办法>的通知》(中电建股〔2019〕122号)以及国家安全法规、规程和标准,在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "自查评报告的基础上坚持政策性、科学性、公正性和针对性的原则,客观、公正、独立的开展现场复审工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b238", "runs": [{"bold": true, "text": "3.3 复审范围", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b239", "runs": [{"text": "1)本次评审范围包括:", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院本部", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各职能部门、", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "勘测设计分公司/YX工程院/抽蓄院", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(简称:", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设计分公司", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")、工程建设", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司(简称:", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建设分", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司)、", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "重庆云阳建全抽水蓄能电站EPC总承包监理项目", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(简称:", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "云阳", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "监理项目)", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、漳州高新区绿色发展生态治理项目工程总承包(EPC)建设项目", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(简称:", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "漳州总包", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项目)", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、大邑", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "抽水蓄能电站地质勘察项目(简称:", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "大邑", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "地勘项目)、", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "大渡河双江口设计项目", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(简称:", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "双江口设计", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项目)的作业现场", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设备设施及安全管理。", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b240", "runs": [{"text": "2", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")评审期:本次评审期为", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2023", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "8", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日至", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。现场评审期间,评审组", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "13", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日至", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2024", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "年", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "17", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日分批次对成都院安全管理情况及抽查的项目现场情况进行了评审。", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b241", "runs": [{"bold": true, "text": "3.4 复审方法", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b242", "runs": [{"text": "根据安全生产标准化达标评级工作的特点,本报告采用安全检查表法和专家现场询问、观察法进行评价。运用雷达图分析法,对企业标准化达标评审的内容进行综合分析,指出相对薄弱环节。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b243", "runs": [{"text": "1)安全检查表法", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b244", "runs": [{"text": "安全检查表法是将工程、系统、作业活动分割成若干小的子系统,根据有关法规、标准,结合运行经验,归纳、总结危险、有害因素,确定检查项目,以提问或打分的形式,按顺序编制成表,进行检查和评分。本报告安全检查表采用《电力建设企业安全生产标准化评级程序及工作要求》(中电建协〔2014〕24号)中的基本条件和《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》中8个核心要素,结合电力勘测设计企业工作实际,来编制检查表进行检查和评分。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b245", "runs": [{"text": "2)专家现场询问、观察法", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b246", "runs": [{"text": "评审组派出了评审员赴现场检查,评审员在检查中坚持原则、实事求是、客观公正,针对被审单位的特点综合采用现场检查、查阅和分析资料、现场询问、实物检查或抽样检查、仪表指示观测和分析、调查和询问等方式,进行认真检查和分析,同时力求文字叙述简洁、问题准确、主次分明、建议具体、有针对性、可操作性强,对技术性较强的内容和存在不同分歧的扣分条款,先后多次组织评审员研究分析和讨论。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b247", "runs": [{"text": "3)雷达图分析法", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b248", "runs": [{"text": "雷达图分析法是将评审对象的八个要素的指标情况用二维平面图形,该图形与导航雷达显示屏上的图形十分相似因而得名。雷达图的特点是直观,从雷达图上可直观地看出评审对象的各指标的差异,从而诊断出评审对象需要巩固和提升的方面。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b249", "runs": [{"bold": true, "text": "3.5 复审过程概述", "color": "000000", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b250", "runs": [{"bold": true, "text": "3.5.1 现场复审项目选择", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"spacingAfter": 76200, "spacingBefore": 76200}}, {"id": "b251", "runs": [{"bold": true, "text": "1)", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "重庆云阳建全抽水蓄能电站EPC总承包监理项目(以下简称:云阳监理项目)", "color": "000000", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b252", "runs": [{"bold": true, "text": "工程简介:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "云阳建全抽蓄电站是中国南水北调集团首个投资控股开发的大型抽水蓄能电站,电站位于重庆市云阳县高阳镇境内,距重庆市公路里程", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "350km", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",距云阳县城", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "41km", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",距重庆市第二负荷中心万州直线距离", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "45km", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",地理位置优越。电站上水库位于高阳镇桂林村和金惠村之间的石河堰水库,下水库位于高阳镇建全村和海坝村之间的双河口水库。云阳建全抽水蓄能电站装机容量", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1200MW(4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "×", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "300MW)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",枢纽建筑物主要包括上水库、输水系统、发电系统和下水库四部分,发电系统包括地下厂房系统建筑物和地面开关站等建筑物。本工程额定水头", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "332.0m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",为一等大", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(1)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "型工程,主要承担重庆电网调峰、填谷、储能、调频及调相等多种任务。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b253", "runs": [{"text": "项目工程总投资", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "85.44", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "亿,其中工程静态投资(不含送出工程投资)", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "70.24", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "亿元,建设征地移民安置补偿静态投资为", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10.49", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "亿元。项目建成后,对保障重庆市电网安全稳定运行,推动实现“双碳”目标和经济社会可持续发展具有重要作用,预计每年可节约发电标煤量", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "25.6", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "万吨,减少二氧化碳排放量", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "65", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "万吨、二氧化硫", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1.6", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "万吨,可拉动地方", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "GDP", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "120", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "至", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "180", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "亿元,每年可增加税收", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1.5", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "亿元,此外还能有效促进就业、旅游、服务业等。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b254", "runs": [{"bold": true, "text": "进展情况:", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b255", "runs": [{"text": "(1)上水库工程:大坝趾板开挖中,全力开展大坝填筑中;", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "引水主洞上平段开挖已完成,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "引水主洞上平段开挖完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "92%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "引水斜井导井反拉及", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "引水斜井钻机安装完成。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b256", "runs": [{"text": "(2)下水库工程:泄洪放空洞开挖完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "12.2%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";排水料场边坡累计开挖完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "44%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";大坝填筑累计完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b257", "runs": [{"text": "(3)地下厂房工程:主副厂房", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "Ⅰ、Ⅱ、Ⅲ", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "层全部开挖完成,主变洞", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "Ⅰ、Ⅱ、Ⅲ", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "层全部开挖完成。厂房Ⅲ层岩锚梁混凝土浇筑完成率", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "52%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";母线洞Ⅰ层完成开挖;高压电缆上平洞累计完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "29.7%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";中层排水廊道累计完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "81%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";自流排水洞累计完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "76%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";尾水上平洞开挖完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "65%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",尾水下平洞累计开挖完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "25%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b258", "runs": [{"bold": true, "text": "2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "漳州高新区绿色发展生态治理项目工程总承包(EPC)建设项目(以下简称:漳州总包项目)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b259", "runs": [{"bold": true, "text": "工程简介:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "漳州高新区绿色发展及产业配套设施项目之生态治理项目位于福建省漳州市,属漳州高新区绿色发展及产业配套设施项目之生态治理部分,治理范围主要是西溪干流高新区段及高新区小流域,包括水环境综合整治、水生态提升、水资源保障三大类,主要建设内容包括上坂断面水环境综合治理工程(生态清淤,清淤规模约为", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "120", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "万立方米,并对淤泥进行固化)、高新区市政污水管网提质增效工程(建设污水管道总长约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "92", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公里,新建、扩建污水提升泵站", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "座)、高新区耕地安全利用与面源污染治理工程(对约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "5000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "亩耕地实施风险管控措施)、九龙江流域(高新段)南岸河岸生态带修复提升工程(生态带修复提升总长约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "33.83", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公里)、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "高新区小流域生态修复工程和九龙江流域(高新段)南部工区小流域生态流量保障工程(拟对共", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "25", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "条主要河道、小流域进行生态治理和补水)。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b260", "runs": [{"bold": true, "text": "进展情况:", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b261", "runs": [{"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")市政污水管网提质增效工程", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b262", "runs": [{"text": "第一批次和第二批次管网均完成本月进度计划,第一批次管网基本完成剩余施工内容,第二批次管网的靖圆", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "污水提升泵站段完成总进度的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "12%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";高新一路完成总进度的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "12%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ";省道", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "208", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "段完成总进度的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "13%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b263", "runs": [{"text": "市政污水管网提质增效工程第一批次的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "条污水管网已基本完工,第二批次管网本月完成靖圆", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "污水提升泵站段约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "600m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的管道安装及路面恢复工作;高新一路段完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "6", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "座沉井的第一模、第二模混凝土浇筑工作;省道", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "208", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "段完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "17", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "座沉井的底板封底浇筑工作以及", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "12", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "座逆作井的护臂混凝土浇筑工作,其他井位的高压旋喷桩施工、围挡及路面破除工作有序进行;古湖南路及金圆路因建设用地征拆暂未开工。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b264", "runs": [{"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")南岸河岸生态带修复提升工程", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b265", "runs": [{"text": "西溪南岸生态修复工程首开段完成本月进度计划的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "95%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。西溪南岸生态修复工程首开段本月完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号沉井施工、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "6", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号驿站装修工作、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "号补水泵站设备安装以及部分绿化、园路、广场、桥梁、驿站、泵站施工等工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "截至", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "目前,骑游道施工工作完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "90%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、驿站施工工作完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "35%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、桥梁施工工作完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "86%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、污水处理站施工工作完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "72%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、泵站施工工作完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "90%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、生态塘施工工作完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "80%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、土建管网施工工作完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "90%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b266", "runs": [{"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")小流域生态修复工程", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b267", "runs": [{"text": "小流域生态修复工程完成本月进度计划", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "100%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",累计完成总体进度计划的", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "37%", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。小流域生态修复工程本月完成河道淤泥疏浚约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "25400", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "立方米、预应力混凝土板桩施工", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "46300", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "米、仿木桩施工", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "30000", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "米、灌注桩施工", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "102", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根、旋喷桩施工", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "30", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "根。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b268", "runs": [{"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")小流域生态流量保障工程", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b269", "runs": [{"text": "小流域生态流量保障工程已完成施工准备,由于征地原因影响,目前", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "9#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "井施工便道、场地硬化、沉井基础完成,沉井第一节正在进行钢筋绑扎", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ":10#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "已移交场地,目前正在实施场地平整、截水沟砌筑等临建工作。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b270", "runs": [{"bold": true, "text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "大邑抽水蓄能电站地质勘察项目(以下简称:大邑地勘项目)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b271", "runs": [{"bold": true, "text": "工程简介:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "大邑抽水蓄能电站位于四川省成都市大邑县鹤鸣镇,为日调节纯抽水蓄能电站,电站距成都市直线距离", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "65km", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",距成都第三绕城高速直线距离", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10km", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。距成都西", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "500", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "千伏变电站约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "55", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公里,上网接入条件便利。电站总装机容量", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1800MW", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "6×300MW", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "),为一等大(", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ")型工程,建成后供电四川电网,承担调峰、填谷、储能、调频、调相和紧急事故备用等任务,保障负荷中心电网安全稳定运行。枢纽工程由上水库、输水系统、地下厂房及地面开关站、下水库等建筑物组成。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": " ", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b272", "runs": [{"text": "上水库位于鹤鸣镇大坪村西北侧", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "龙窝子", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "宽谷盆地,坝址位于水库东南侧垭口。下水库位于斜江支流黄水河大坪村所在洼地,坝址位于黄水河沟口上游约", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2.3km", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。输水发电系统布置于上、下水库间青龙沟的右岸山体内,输水系统总长", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2185.97m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",水平距离为", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2060m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",电站距高比", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "5.41", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。地下发电厂房布置于输水线路中部,引水系统和尾水系统均采用", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "“", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "两洞六机", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "”", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的布置方式。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b273", "runs": [{"bold": true, "text": "进展情况:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "大邑抽水蓄能电站勘察工作可研阶段计划工作量:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、钻探", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "6340m/69", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "孔。", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、平洞", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3340m/13", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞,其中上水库左坝肩", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "200m/1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "倾倒变形体", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "650m/2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "倾倒变形体", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "200m/1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞,输水线路", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "320m/2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞,地下厂房", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1590m/3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞,下水库", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "180m/2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞,天然建筑材料", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "200m/2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "洞。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b274", "runs": [{"text": "目前已完成钻探", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "5501.5m/60", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "孔,未完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1210m/13", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "孔。累计已完成平洞", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1268.5m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",未完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2071.5m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。其中厂房平洞已完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1113.7m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",上水库左坝肩已完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "100m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "倾倒变形体已完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "43.6m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2#", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "倾倒变形体已完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",下水库左坝肩已完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "11.2m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",天然建筑材料已完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",输水线路已完成", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b275", "runs": [{"bold": true, "text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": ")", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "大渡河双江口设计项目(以下简称:双江口设计项目)", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b276", "runs": [{"bold": true, "text": "工程简介:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "双江口水电站位于四川省阿坝州马尔康市、金川县境内大渡", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "河上源足木足河、绰斯甲河汇口以下约2km河段。电站采用坝式开发,开发任务以发电为主,参与长江中下游防洪,并促进地方经济社会发展。水库正常蓄水位2500.00m,死水位2420.00m,设计洪水位2501.44m,校核洪水位为2504.42m。水库总库容为28.97亿m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman", "verticalAlign": "superscript"}, {"text": ",调节库容19.17亿m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman", "verticalAlign": "superscript"}, {"text": "。电站装机容量200万kW,多年平均年发电量约77.07亿kW", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "·", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "h。本工程为一等大(1)型工程。枢纽工程", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "由拦河大坝、泄洪建筑物、引水发电系统等组成。拦河土质心墙", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "堆石坝,最大坝高315m,坝顶高程2510.00m。枢纽泄洪最大水头约250m,最大下泄流量约8200m", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman", "verticalAlign": "superscript"}, {"text": "/s,泄水建筑物包括洞式溢洪道、深孔泄洪洞、竖井泄洪洞和放空洞,其中洞式溢洪道、深孔泄洪洞及利用2#导流洞改建的放空洞位于右岸,利用3#导流洞改建的竖井泄洪洞位于左岸。引水发电系统布置于左岸,发电厂房采用地下式,厂内安装4台容量500MW的立轴混流式水轮发电机组,采用“单机单管供水”及“两机一室一洞”的布置格局。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b277", "runs": [{"text": "工程施工总工期为120个月,其中准备工程直线工期28个月,主体工程为74个月,完建工程为18个月。按2013年1季度价格水平,工程设计概算静态总投资为283亿元,总投资为370亿元。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b278", "runs": [{"bold": true, "text": "进展情况:", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2015年4月9日,国家发展和改革委员会印发了《关于四川大", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "渡河双江口水电站项目核准的批复》,同意双江口水电站项目开工建设。目前", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "大坝填筑已经过半,至高程2366m;地下厂房正在浇筑蜗壳层至发电机层,机电设备同步安装;洞式溢洪道进口、洞身段开挖支护完成,出口边坡正在进行挑坎段开挖;深孔泄洪洞进、出口边坡正在支护。计划2024年底下闸蓄水,2025年底首批机组发电。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 306070}}, {"id": "b279", "runs": [{"bold": true, "text": "3.5.2 ", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "现场复审人员", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"spacingAfter": 76200, "spacingBefore": 76200}}, {"id": "b280", "type": "table", "table": {"cols": 5, "data": [[{"text": "序 号", "colspan": 1, "paragraphs": [{"runs": [{"text": "序 号", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "姓 名", "colspan": 1, "paragraphs": [{"runs": [{"text": "姓 名", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "职 务", "colspan": 1, "paragraphs": [{"runs": [{"text": "职 务", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "专 业", "colspan": 1, "paragraphs": [{"runs": [{"text": "专 业", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "工作单位", "colspan": 1, "paragraphs": [{"runs": [{"text": "工作单位", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "1", "colspan": 1, "paragraphs": [{"runs": [{"text": "1", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "葛学福", "colspan": 1, "paragraphs": [{"runs": [{"text": "葛学福", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "专家组长", "colspan": 1, "paragraphs": [{"runs": [{"text": "专家组长", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安全管理、作业安全", "colspan": 1, "paragraphs": [{"runs": [{"text": "安全管理、", "format": {"fontFamily": "Times New Roman"}}, {"text": "作业", "format": {"fontFamily": "Times New Roman"}}, {"text": "安全", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "江西水电", "colspan": 1, "paragraphs": [{"runs": [{"text": "江西水电", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "2", "colspan": 1, "paragraphs": [{"runs": [{"text": "2", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "余正坚", "colspan": 1, "paragraphs": [{"runs": [{"text": "余正坚", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "专 家", "colspan": 1, "paragraphs": [{"runs": [{"text": "专", "format": {"fontFamily": "Times New Roman"}}, {"text": " ", "format": {"fontFamily": "Times New Roman"}}, {"text": "家", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安全管理、设备设施", "colspan": 1, "paragraphs": [{"runs": [{"text": "安全管理、", "format": {"fontFamily": "Times New Roman"}}, {"text": "设备设施", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "水电七局", "colspan": 1, "paragraphs": [{"runs": [{"text": "水电七局", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "3", "colspan": 1, "paragraphs": [{"runs": [{"text": "3", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "苏经仪", "colspan": 1, "paragraphs": [{"runs": [{"text": "苏经仪", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "专 家", "colspan": 1, "paragraphs": [{"runs": [{"text": "专 家", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安全管理、作业安全", "colspan": 1, "paragraphs": [{"runs": [{"text": "安全管理", "format": {"fontFamily": "Times New Roman"}}, {"text": "、作业安全", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "昆明院", "colspan": 1, "paragraphs": [{"runs": [{"text": "昆明院", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "4", "colspan": 1, "paragraphs": [{"runs": [{"text": "4", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "周建胜", "colspan": 1, "paragraphs": [{"runs": [{"text": "周建胜", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "专 家", "colspan": 1, "paragraphs": [{"runs": [{"text": "专 家", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安全管理、设备设施", "colspan": 1, "paragraphs": [{"runs": [{"text": "安全管理", "format": {"fontFamily": "Times New Roman"}}, {"text": "、", "format": {"fontFamily": "Times New Roman"}}, {"text": "设备设施", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安源公司", "colspan": 1, "paragraphs": [{"runs": [{"text": "安源公司", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "5", "colspan": 1, "paragraphs": [{"runs": [{"text": "5", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "赵 泓", "colspan": 1, "paragraphs": [{"runs": [{"text": "赵 泓", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "专 家", "colspan": 1, "paragraphs": [{"runs": [{"text": "专 家", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安全管理", "colspan": 1, "paragraphs": [{"runs": [{"text": "安全管理", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安源公司", "colspan": 1, "paragraphs": [{"runs": [{"text": "安源公司", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "6", "colspan": 1, "paragraphs": [{"runs": [{"text": "6", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "朱晓莉", "colspan": 1, "paragraphs": [{"runs": [{"text": "朱晓莉", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "项目经理", "colspan": 1, "paragraphs": [{"runs": [{"text": "项目经理", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安全管理", "colspan": 1, "paragraphs": [{"runs": [{"text": "安全管理", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安源公司", "colspan": 1, "paragraphs": [{"runs": [{"text": "安源公司", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "7", "colspan": 1, "paragraphs": [{"runs": [{"text": "7", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "向 义", "colspan": 1, "paragraphs": [{"runs": [{"text": "向 义", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "现场经理", "colspan": 1, "paragraphs": [{"runs": [{"text": "现场", "format": {"fontFamily": "Times New Roman"}}, {"text": "经理", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安全管理", "colspan": 1, "paragraphs": [{"runs": [{"text": "安全管理", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "安源公司", "colspan": 1, "paragraphs": [{"runs": [{"text": "安源公司", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}]], "rows": 8}}, {"id": "b281", "runs": [{"bold": true, "text": "3.5.3 现场复审工作过程", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"spacingAfter": 76200, "spacingBefore": 76200}}, {"id": "b282", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "13", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日至2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日,安源公司分别成立评审组,对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分批次开展了安全生产标准化达标评级现场评审工作。对照《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》,对8个核心要素进行了评审,并针对评审过程中发现的问题提出了整改意见,指导企业整改落实。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b283", "runs": [{"text": "现场评审过程如下:", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b284", "runs": [{"text": "1)评审组内部工作会议:评审组根据项目进度分批次对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行了复审,分别在4个抽查的项目", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2个", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分公司和", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "本部召开内部工作会议,学习评审工作方案、评审的组织体系和分工。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b285", "runs": [{"text": "2)现场评审:评审组依据《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》,按照规定的程序和要求,开展", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "本部、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设计分公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建设分", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "云阳", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "监理项目、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "漳州", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "总包项目、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "大邑", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "地勘项目、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "双江口", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设计项目资料及现场评审。通过查阅企业安全文件和资料,现场检查设备设施、作业安全等,对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "及其所属", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、项目", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "部", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "安全生产标准化实施情况进行实地检查验证,确保现场评审的准确性和真实性。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b286", "runs": [{"text": "具体评审时间如下:", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b287", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "13", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日~", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "15", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日,由专家", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "葛学福", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "余正坚", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "周建胜", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "漳州总包", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "监理项目进行现场评审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b288", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "16", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日~", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "18", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日,由专家", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "葛学福", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "余正坚", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "周建胜", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "云阳监理", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项目进行现场评审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b289", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "9", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日~", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日,由专家", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "余正坚", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "苏经仪", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、赵泓对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "双江口设计", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项目进行现场评审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b290", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日~", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "13", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日,由专家", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "余正坚", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "苏经仪", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、赵泓对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "大邑", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "地勘项目进行现场评审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b291", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "4", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日~1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "5", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日,由专家", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "余正坚", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "苏经仪", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "周建胜、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "赵泓对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建设分", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "公司、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "设计分公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "进行现场评审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b292", "runs": [{"text": "2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "6", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日~1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日,由", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "专家葛学福、余正坚", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "苏经仪", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "周建胜、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "赵泓对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "本部进行现场评审。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b293", "runs": [{"text": "3)评审组专家分析会:评审组召开评审工作沟通会,就评审工作进展情况、现场评审中发现的问题、适用的法规制度等情况进行充分的沟通交流,统一意见,形成共识。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b294", "runs": [{"text": "4)末次会议:2024年", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "10", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "月1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "7", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "日", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "上", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ":", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0~1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "2", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ":", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "0,在", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "本部", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "第一会议室", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "召开了末次会议,评审组成员", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "相关领导", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",党委/群团工作部、公司/董事会办公室、纪委/巡查工作办公室、财务部、项目管理部、安全质量环保部等", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "各", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "职能", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "部门", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "主要负责人", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": ",国际工程分公司、勘测设计分公司、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "建设分公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "等分/子公司和部分项目部", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "的主要管理人员参加了会议。评审组组长通报了本次现场评审初步结论,并指出了评审中发现的主要问题,给出了整改建议,", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "领导做了表态发言,并承诺下一步将重点落实整改。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b295", "runs": [{"text": ""}], "type": "paragraph", "style": {"alignment": "center", "lineSpacing": 1.5}}, {"id": "b296", "runs": [{"bold": true, "text": "4 现场复审情况", "fontSize": 18.0, "fontFamily": "Times New Roman"}], "type": "heading1", "style": {"lineSpacing": 1.5, "spacingBefore": 101600}}, {"id": "b297", "runs": [{"text": "本次评审依据《中国电力建设集团(股份)有限公司电力勘测设计企业安全生产标准化评价标准(2020年版)》,标准项95项,标准分1000分,"}, {"text": "成都院"}, {"text": "本次评审共2项不相关项,不相关项情况见表4.1-1,实评项93项。"}], "type": "paragraph", "style": {"indentFirstLine": 304800}}, {"id": "b298", "runs": [{"bold": true, "text": "表4.1-1 不相关项统计表", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"alignment": "center", "indentFirstLine": 306070}}, {"id": "b299", "type": "table", "table": {"cols": 4, "data": [[{"text": "项目序号", "colspan": 1, "paragraphs": [{"runs": [{"text": "项目序号", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "项目名称", "colspan": 1, "paragraphs": [{"runs": [{"text": "项目名称", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "标准分", "colspan": 1, "paragraphs": [{"runs": [{"text": "标准分", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "不参评项原因", "colspan": 1, "paragraphs": [{"runs": [{"text": "不参评项原因", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "5.5.2.2", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.5.2.2", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "重大危险源登记建档与备案", "colspan": 1, "paragraphs": [{"runs": [{"text": "重大危险源登记建档与备案", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5", "colspan": 1, "paragraphs": [{"runs": [{"text": "5", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "成都院无《危险化学品重大危险源辨识》(GB18218-2018)规定的重大危险源,查评期间成都院本部、分公司及项目部均无危险化学品重大危险源,本项不参与查评。", "colspan": 1, "paragraphs": [{"runs": [{"text": "成都院", "format": {"fontFamily": "Times New Roman"}}, {"text": "无《危险化学品重大危险源辨识》(GB18218-2018)规定的重大危险源,查评期间", "format": {"fontFamily": "Times New Roman"}}, {"text": "成都院", "format": {"fontFamily": "Times New Roman"}}, {"text": "本部、", "format": {"fontFamily": "Times New Roman"}}, {"text": "分公司", "format": {"fontFamily": "Times New Roman"}}, {"text": "及项目部均无危险化学品重大危险源,本项不参与查评。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "left"}]}], [{"text": "5.5.2.3", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.5.2.3", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "重大危险源监控与管理", "colspan": 1, "paragraphs": [{"runs": [{"text": "重大危险源监控与管理", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5", "colspan": 1, "paragraphs": [{"runs": [{"text": "5", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "成都院无《危险化学品重大危险源辨识》(GB18218-2018)规定的重大危险源,查评期间成都院本部、分公司及项目部均无危险化学品重大危险源,本项不参与查评。", "colspan": 1, "paragraphs": [{"runs": [{"text": "成都院", "format": {"fontFamily": "Times New Roman"}}, {"text": "无《危险化学品重大危险源辨识》(GB18218-2018)规定的重大危险源,查评期间", "format": {"fontFamily": "Times New Roman"}}, {"text": "成都院", "format": {"fontFamily": "Times New Roman"}}, {"text": "本部、", "format": {"fontFamily": "Times New Roman"}}, {"text": "分公司", "format": {"fontFamily": "Times New Roman"}}, {"text": "及项目部均无危险化学品重大危险源,本项不参与查评。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "left"}]}]], "rows": 3}}, {"id": "b300", "runs": [{"text": "评审组对", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "职能部门、", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分公司", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "和抽查的项目部进行了现场评审,详见“附件1", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "成都院", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "核心要素评审情况记录表”。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.4, "spacingBefore": 152400, "indentFirstLine": 304800}}, {"id": "b301", "runs": [{"bold": true, "text": "4.1 核心要求复审情况", "fontSize": 16.0, "fontFamily": "Times New Roman"}], "type": "heading2", "style": {"lineSpacing": 1.5, "spacingAfter": 76200, "spacingBefore": 101600}}, {"id": "b302", "runs": [{"bold": true, "text": "4.1.1 目标", "fontSize": 14.0, "fontFamily": "Times New Roman"}, {"bold": true, "text": "职责", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"spacingAfter": 76200, "spacingBefore": 76200}}, {"id": "b303", "runs": [{"text": "目标职责要素标准项9项,适用项9项,扣分项", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "5", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "项,标准分120分,应得分120分,实得分11", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "3", "fontSize": 12.0, "fontFamily": "Times New Roman"}, {"text": "分。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b304", "runs": [{"text": "现场查评发现的具体问题详见下表:", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 342900}}, {"id": "b305", "type": "table", "table": {"cols": 4, "data": [[{"text": "序号", "colspan": 1, "paragraphs": [{"runs": [{"text": "序号", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "项目", "colspan": 1, "paragraphs": [{"runs": [{"text": "项目", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "存在的问题", "colspan": 1, "paragraphs": [{"runs": [{"text": "存在的问题", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "扣分标准", "colspan": 1, "paragraphs": [{"runs": [{"text": "扣分标准", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "1", "colspan": 1, "paragraphs": [{"runs": [{"text": "1", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5.1.1.1\n目标制定", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.1.1.1", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}, {"runs": [{"text": "目标制定", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "大邑地勘项目部制定的2024年度安全生产目标,缺少设备设施方面的事故控制目标。", "colspan": 1, "paragraphs": [{"runs": [{"text": "大邑地勘项目部制定的2024年度安全生产目标,缺少设备设施方面的事故控制目标。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}, {"text": "依据评分标准“②目标内容有缺失,扣1分/项”,共扣1分。", "colspan": 1, "paragraphs": [{"runs": [{"text": "依据"}, {"text": "评分标准"}, {"text": "“②目标内容有缺失,扣1分/项”,共扣1分。"}]}]}], [{"text": "2", "colspan": 1, "paragraphs": [{"runs": [{"text": "2", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5.1.1.2\n目标落实", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.1.1.2", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}, {"runs": [{"text": "目标落实", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "双江口设计项目部项目经理与各专业部门负责人签订的《2024年度安全责任书》中,目标分解不明确,不满足要求。", "colspan": 1, "paragraphs": [{"runs": [{"text": "双江口设计项目部项目经理与各专业部门负责人签订的《2024年度安全责任书》中,目标分解不明确,不满足要求。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}, {"text": "依据评分标准“②签订责任书、目标分解不满足要求,扣1分/单位”,共扣1分。", "colspan": 1, "paragraphs": [{"runs": [{"text": "依据", "format": {"fontFamily": "Times New Roman"}}, {"text": "评分标准", "format": {"fontFamily": "Times New Roman"}}, {"text": "“②签订责任书、目标分解不满足要求,扣1分/单位”,共扣1分。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}], [{"text": "3", "colspan": 1, "paragraphs": [{"runs": [{"text": "3", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5.1.1.3\n目标考核", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.1.1.3", "format": {"fontFamily": "Times New Roman"}}, {"text": "\n", "format": {"fontFamily": "Times New Roman"}}, {"text": "目标考核", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "云阳监理项目未对二季度安全生产目标及工作计划完成情况进行考核、监督检查。", "colspan": 1, "paragraphs": [{"runs": [{"text": "云阳监理项目未对二季度安全生产目标及工作计划完成情况进行考核、监督检查。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}, {"text": "依据评分标准“①未对目标的完成情况进行评估和考核,扣2分/次”,共扣2分。", "colspan": 1, "paragraphs": [{"runs": [{"text": "依据", "format": {"fontFamily": "Times New Roman"}}, {"text": "评分标准", "format": {"fontFamily": "Times New Roman"}}, {"text": "“①未对目标的完成情况进行评估和考核,扣2分/次”,共扣2分。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}], [{"text": "4", "colspan": 1, "paragraphs": [{"runs": [{"text": "4", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5.1.2.1\n机构设置", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.1.2.1", "format": {"fontFamily": "Times New Roman"}}, {"text": "\n", "format": {"fontFamily": "Times New Roman"}}, {"text": "机构设置", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "漳州总包项目部安委会组成不符合规定,未包含分包单位负责人。", "colspan": 1, "paragraphs": [{"runs": [{"text": "漳州总包项目部安委会组成不符合规定,未包含分包单位负责人。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}, {"text": "依据评分标准“①安委会组成不符合规定或未及时调整,扣2分/次”,共扣2分", "colspan": 1, "paragraphs": [{"runs": [{"text": "依据", "format": {"fontFamily": "Times New Roman"}}, {"text": "评分标准", "format": {"fontFamily": "Times New Roman"}}, {"text": "“①安委会组成不符合规定或未及时调整,扣2分/次”,共扣2分", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}], [{"text": "5", "colspan": 1, "paragraphs": [{"runs": [{"text": "5", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5.1.2.2\n主要负责人及管理层职责", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.1.2.2", "format": {"fontFamily": "Times New Roman"}}, {"text": "\n", "format": {"fontFamily": "Times New Roman"}}, {"text": "主要负责人及管理层职责", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "双江口设计项目部9月召开的安全生产例会中,未针对成都院隐患大排查、设计分公司安全风险隐患专项整治工作等要求,部署安排隐患排查相关工作。", "colspan": 1, "paragraphs": [{"runs": [{"text": "双江口设计项目部9月召开的安全生产例会中,未针对成都院隐患大排查、设计分公司安全风险隐患专项整治工作等要求,部署安排隐患排查相关工作。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}, {"text": "依据评分标准“④会议未布置安全生产工作,扣1分/项”,共扣1分。", "colspan": 1, "paragraphs": [{"runs": [{"text": "依据", "format": {"fontFamily": "Times New Roman"}}, {"text": "评分标准", "format": {"fontFamily": "Times New Roman"}}, {"text": "“④会议未布置安全生产工作,扣1分/项”,共扣1分。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}]], "rows": 6}}, {"id": "b306", "runs": [{"bold": true, "text": "4.1.2 制度化管理", "fontSize": 14.0, "fontFamily": "Times New Roman"}], "type": "heading3", "style": {"spacingAfter": 76200, "spacingBefore": 76200}}, {"id": "b307", "runs": [{"text": "制度化管理要素标准项6项,适用项6项,扣分项2项,标准分50分,应得分50分,实得分46分。", "fontSize": 12.0, "fontFamily": "Times New Roman"}], "type": "paragraph", "style": {"lineSpacing": 1.5, "indentFirstLine": 304800}}, {"id": "b308", "runs": [{"text": "现场查评发现的具体问题详见下表:"}], "type": "paragraph"}, {"id": "b309", "type": "table", "table": {"cols": 4, "data": [[{"text": "序号", "colspan": 1, "paragraphs": [{"runs": [{"text": "序号", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "项目", "colspan": 1, "paragraphs": [{"runs": [{"text": "项目", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "存在的问题", "colspan": 1, "paragraphs": [{"runs": [{"text": "存在的问题", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "扣分标准", "colspan": 1, "paragraphs": [{"runs": [{"text": "扣分标准", "format": {"bold": true, "fontFamily": "Times New Roman"}}], "alignment": "center"}]}], [{"text": "1", "colspan": 1, "paragraphs": [{"runs": [{"text": "1", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5.2.2\n规章制度", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.2.2", "format": {"fontFamily": "Times New Roman"}}, {"text": "\n", "format": {"fontFamily": "Times New Roman"}}, {"text": "规章制度", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "勘测设计分公司未按成都院《安全风险管控管理办法》的要求制定安全风险管控制度。", "colspan": 1, "paragraphs": [{"runs": [{"text": "勘测设计分公司未按成都院《安全风险管控管理办法》的要求制定安全风险管控制度。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}, {"text": "依据评分标准“①制度内容违背上级相关要求,扣2分/处”,共扣2分。", "colspan": 1, "paragraphs": [{"runs": [{"text": "依据", "format": {"fontFamily": "Times New Roman"}}, {"text": "评分标准", "format": {"fontFamily": "Times New Roman"}}, {"text": "“①制度内容违背上级相关要求,扣2分/处”,共扣2分。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}], [{"text": "2", "colspan": 1, "paragraphs": [{"runs": [{"text": "2", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "5.2.3\n操作规程", "colspan": 1, "paragraphs": [{"runs": [{"text": "5.2.3", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}, {"runs": [{"text": "操作规程", "format": {"fontFamily": "Times New Roman"}}], "alignment": "center"}]}, {"text": "云阳监理项目1#引水洞汽车吊和下库进出水口挖掘机未张贴安全操作规程。", "colspan": 1, "paragraphs": [{"runs": [{"text": "云阳监理项目", "format": {"fontFamily": "Times New Roman"}}, {"text": "1", "format": {"fontFamily": "Times New Roman"}}, {"text": "#引水洞汽车吊和下库进出水口挖掘机未张贴安全操作规程。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}, {"text": "依据评分标准“③设备未悬挂安全操作规程,扣1分/处”,共扣2分。", "colspan": 1, "paragraphs": [{"runs": [{"text": "依据", "format": {"fontFamily": "Times New Roman"}}, {"text": "评分标准", "format": {"fontFamily": "Times New Roman"}}, {"text": "“③设备未悬挂安全操作规程,扣1分/处”,共扣2分。", "format": {"fontFamily": "Times New Roman"}}], "alignment": "justify"}]}]], "rows": 3}}, {"id": "b310", "runs": [{"text": ""}], "type": "paragraph"}], "totalBlocks": 311}'::jsonb, NULL, NULL, '2026-02-13 17:19:55.466694', '2026-02-13 17:19:55.466694'); -- 重置序列 SELECT setval('edge_properties_id_seq', 1000); SELECT setval('edge_types_id_seq', 11); SELECT setval('edges_id_seq', 2394); SELECT setval('node_properties_id_seq', 4412); SELECT setval('node_types_id_seq', 6); SELECT setval('nodes_id_seq', 1137); SELECT setval('property_definitions_id_seq', 1); SELECT setval('sys_configs_id_seq', 1); SELECT setval('sys_dict_items_id_seq', 1); SELECT setval('sys_dict_types_id_seq', 1); SELECT setval('sys_files_id_seq', 1); SELECT setval('sys_login_logs_id_seq', 21); SELECT setval('sys_operation_logs_id_seq', 1); SELECT setval('sys_permissions_id_seq', 1); SELECT setval('sys_role_permissions_id_seq', 1); SELECT setval('sys_roles_id_seq', 1); SELECT setval('sys_sessions_id_seq', 19); SELECT setval('sys_tasks_id_seq', 1); SELECT setval('sys_user_roles_id_seq', 1); SELECT setval('sys_users_id_seq', 1); COMMIT;