1. 修复用户信息未同步人力资源编号的问题

This commit is contained in:
chenbowen
2025-12-02 11:13:33 +08:00
parent 55dd8df69c
commit a689a3ffe4
13 changed files with 96 additions and 26 deletions

View File

@@ -0,0 +1,8 @@
-- 达梦8数据库 DDL 脚本
-- 为 system_users 表添加 workcode 字段(工号)
-- 添加工号字段
ALTER TABLE system_users ADD COLUMN workcode VARCHAR(64);
-- 添加字段注释
COMMENT ON COLUMN system_users.workcode IS '工号';