临时用户生效日期

This commit is contained in:
sxu 2025-06-04 16:17:12 +08:00
parent f4a8ad9cff
commit 4fdf46420a
1 changed files with 9 additions and 1 deletions

View File

@ -6,6 +6,14 @@ alter table sys_user
alter table sys_user alter table sys_user
add birthday date null comment '生日'; 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 alter table sys_dept
add dept_full_name varchar(1000) null comment '组织全称'; add dept_full_name varchar(1000) null comment '组织全称';