From 4fdf46420a844efa5c80c7374b796a81760b1bd8 Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Wed, 4 Jun 2025 16:17:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=B4=E6=97=B6=E7=94=A8=E6=88=B7=E7=94=9F?= =?UTF-8?q?=E6=95=88=E6=97=A5=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/bns_202504_patch/bns_202504_patch.sql | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sql/bns_202504_patch/bns_202504_patch.sql b/sql/bns_202504_patch/bns_202504_patch.sql index 79b2952..20059d7 100644 --- a/sql/bns_202504_patch/bns_202504_patch.sql +++ b/sql/bns_202504_patch/bns_202504_patch.sql @@ -6,6 +6,14 @@ alter table sys_user alter table sys_user add birthday date null comment '生日'; +-- 生效开始日期 +alter table sys_user + add effective_start_day date null comment '生效开始日期'; + +-- 生效截止日期 +alter table sys_user + add effective_end_day date null comment '生效截止日期'; + -- 组织全称 alter table sys_dept - add dept_full_name varchar(1000) null comment '组织全称'; \ No newline at end of file + add dept_full_name varchar(1000) null comment '组织全称';