From d6ea63ec54bda96363cd4890ddfbe97ede8ba9e1 Mon Sep 17 00:00:00 2001 From: siontion Date: Tue, 16 Jan 2024 12:42:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=BA=93=E7=AE=A1=E7=90=86=20?= =?UTF-8?q?=E5=87=BA=E5=BA=93=E4=BA=BA=20outbound?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 出库管理 出库人 outbound --- sql/v1.1.0/heli.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/v1.1.0/heli.sql b/sql/v1.1.0/heli.sql index 48ba9845..07a8e7b7 100644 --- a/sql/v1.1.0/heli.sql +++ b/sql/v1.1.0/heli.sql @@ -29,8 +29,8 @@ CREATE TABLE `wms_storage` ( `tenant_id` bigint(20) NOT NULL COMMENT '租户编号', `keeper` bigint(20) NULL DEFAULT NULL COMMENT '入库人', `keeper_time` datetime NULL DEFAULT NULL COMMENT '入库时间', - `outer` bigint(20) NULL DEFAULT NULL COMMENT '出库人', - `outer_time` datetime NULL DEFAULT NULL COMMENT '出库时间', + `outbound` bigint(20) NULL DEFAULT NULL COMMENT '出库人', + `outbound_time` datetime NULL DEFAULT NULL COMMENT '出库时间', `cancel` bigint(20) NULL DEFAULT NULL COMMENT '作废人', `cancel_time` datetime NULL DEFAULT NULL COMMENT '作废时间', PRIMARY KEY (`id`) USING BTREE