1. 优化用户部门选择部门时的支持接口
2. 完善 e 办同步接口重跑和定时重跑任务
(cherry picked from commit f8c984d627)
This commit is contained in:
14
sql/dm/部门添加编码、简称字段.sql
Normal file
14
sql/dm/部门添加编码、简称字段.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
-- 达梦8数据库DDL脚本
|
||||
-- 为 system_dept 表添加 code 和 short_name 字段
|
||||
|
||||
-- 添加部门编码字段
|
||||
ALTER TABLE system_dept ADD COLUMN code VARCHAR(50);
|
||||
|
||||
-- 添加部门简称字段
|
||||
ALTER TABLE system_dept ADD COLUMN short_name VARCHAR(20);
|
||||
|
||||
-- 添加字段注释
|
||||
COMMENT ON COLUMN system_dept.code IS '部门编码';
|
||||
COMMENT ON COLUMN system_dept.short_name IS '部门简称';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user