From 95317eca4274c87cd7032e107c57b32836dd8562 Mon Sep 17 00:00:00 2001 From: lj7788 Date: Thu, 9 Apr 2026 16:28:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9SQL=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docsql/2026/04/安全穿透管理.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docsql/2026/04/安全穿透管理.sql b/docsql/2026/04/安全穿透管理.sql index eec20605..8769bfa2 100644 --- a/docsql/2026/04/安全穿透管理.sql +++ b/docsql/2026/04/安全穿透管理.sql @@ -68,7 +68,7 @@ create table safe_penetration_grid -create table afe_penetration_item( +create table safe_penetration_item( id bigint auto_increment primary key, project_id bigint comment '项目ID', `parent_id` bigint DEFAULT '0' COMMENT '父部门id', @@ -82,7 +82,7 @@ create table afe_penetration_item( sorted int ) COMMENT '网格管理配置项'; -create table afe_penetration_check( +create table safe_penetration_check( id bigint auto_increment primary key, project_id bigint comment '项目ID', check_type int COMMENT '检查类型 1-横向检查 2-班前 3-班后 4-关键施工', @@ -102,7 +102,7 @@ inspection_opinion int default 0 comment '检查意见 0-不同意 1-同意', update_time datetime comment '更新时间' )COMMENT '检查数据'; -create table afe_penetration_check_data( +create table safe_penetration_check_data( id bigint auto_increment primary key, check_id int COMMENT '检查ID', item_id int COMMENT '检查项ID',