From 712dbdca2fa41a05779b89f2c8020e21dc77e579 Mon Sep 17 00:00:00 2001 From: siontion Date: Mon, 3 Jun 2024 15:32:36 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=B7=A5=E8=89=BA=E8=B7=AF=E7=BA=BF?= =?UTF-8?q?=E3=80=91=E8=84=9A=E6=9C=AC=E6=9B=B4=E6=96=B0base=5Fprocess=5Fd?= =?UTF-8?q?etail?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/v1.0.0/2.business/1.structure.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/sql/v1.0.0/2.business/1.structure.sql b/sql/v1.0.0/2.business/1.structure.sql index 7cb36e89..c230bf74 100644 --- a/sql/v1.0.0/2.business/1.structure.sql +++ b/sql/v1.0.0/2.business/1.structure.sql @@ -210,6 +210,7 @@ CREATE TABLE `base_process` ( drop table if exists `base_process_detail`; CREATE TABLE `base_process_detail` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增字段,唯一', + `process_id` bigint(20) DEFAULT NULL COMMENT '工艺路线id', `procedure_id` bigint(20) DEFAULT NULL COMMENT '工序id', `procedure_sort` int(11) DEFAULT NULL COMMENT '工序顺序号', `procedure_equip_id` bigint(20) DEFAULT NULL COMMENT '生产设备id',