Browse Source

格式化SQL

wudla 4 years ago
parent
commit
4de4d9f58f
5 changed files with 504 additions and 466 deletions
  1. BIN
      .DS_Store
  2. 30 27
      SQL/alarm.ddl.sql
  3. 80 74
      SQL/dic.ddl.sql
  4. 30 27
      SQL/dpt.ddl.sql
  5. 364 338
      SQL/org.ddl.sql

BIN
.DS_Store


+ 30 - 27
SQL/alarm.ddl.sql

@@ -1,33 +1,36 @@
 ## 报警系统数据表
+
 # 报警条目表
+
 DROP TABLE IF EXISTS `alarm_item`;
-create table alarm_item
-(
-    id varchar(40) not null primary key comment '',
-    code varchar(40) not null comment '报警条目编码(6位数字)',
-    name varchar(255) null comment '报警条目名称',
-    project_id varchar(40) null comment '项目ID',
-    alarm_category varchar(100) null comment '报警分类',
-    level varchar(40)  null comment '严重程度 S A B C D 五级',
-    valid int null comment '有效状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
-    remark varchar(500) null comment '备注'
-) comment '报警条目表';
+
+CREATE TABLE alarm_item (
+    id varchar(40) NOT NULL PRIMARY KEY COMMENT '',
+    code varchar(40) NOT NULL COMMENT '报警条目编码(6位数字)',
+    name varchar(255) NULL COMMENT '报警条目名称',
+    project_id varchar(40) NULL COMMENT '项目ID',
+    alarm_category varchar(100) NULL COMMENT '报警分类',
+    level varchar(40) NULL COMMENT '严重程度 S A B C D 五级',
+    valid int NULL COMMENT '有效状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    remark varchar(500) NULL COMMENT '备注'
+) COMMENT '报警条目表';
 
 # 报警记录表
+
 DROP TABLE IF EXISTS `alarm_record`;
-create table alarm_record
-(
-    id varchar(40)  not null primary key ,
-    code varchar(40)  null comment '报警条目编码',
-    project_id varchar(50)  null comment '项目id',
-    object_id varchar(50)  null comment '对象id',
-    level varchar(10)  null comment '严重程度 S A B C D 五级',
-    status varchar(50)  null comment '状态',
-    create_time varchar(14)  null comment '创建时间',
-    recover_time varchar(14)  null comment '恢复时间',
-    remark varchar(500) null comment '备注'
-) comment '报警记录表';
+
+CREATE TABLE alarm_record (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    code varchar(40) NULL COMMENT '报警条目编码',
+    project_id varchar(50) NULL COMMENT '项目id',
+    object_id varchar(50) NULL COMMENT '对象id',
+    level varchar(10) NULL COMMENT '严重程度 S A B C D 五级',
+    status varchar(50) NULL COMMENT '状态',
+    create_time varchar(14) NULL COMMENT '创建时间',
+    recover_time varchar(14) NULL COMMENT '恢复时间',
+    remark varchar(500) NULL COMMENT '备注'
+) COMMENT '报警记录表';

+ 80 - 74
SQL/dic.ddl.sql

@@ -1,89 +1,95 @@
 ##数据字典表
+
 # 字典类型
+
 DROP TABLE IF EXISTS `dic_dt_type`;
-create table dic_dt_type
-(
-    id varchar(20) not null primary key,
-    group_code varchar(20) null comment '集团编码',
-    type varchar(40) not null comment '字典类型',
-    name varchar(40) not null comment '字典类型名称',
-    description varchar(200) null comment '描述',
-    status int not null comment '状态',
-    create_time timestamp null comment '创建时间',
-    create_user varchar(40) null comment '创建用户',
-    update_time timestamp null comment '更新时间',
-    update_user varchar(40) null comment '更新用户',
-    remark varchar(200) null comment '备注'
-) comment '字典类型';
+
+CREATE TABLE dic_dt_type (
+    id varchar(20) NOT NULL PRIMARY KEY,
+    group_code varchar(20) NULL COMMENT '集团编码',
+    type varchar(40) NOT NULL COMMENT '字典类型',
+    name varchar(40) NOT NULL COMMENT '字典类型名称',
+    description varchar(200) NULL COMMENT '描述',
+    status int NOT NULL COMMENT '状态',
+    create_time timestamp NULL COMMENT '创建时间',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    remark varchar(200) NULL COMMENT '备注'
+) COMMENT '字典类型';
 
 # 字典数据
+
 DROP TABLE IF EXISTS `dic_dt_data`;
-create table dic_dt_data
-(
-    id varchar(20) not null primary key ,
-    dict_type_id varchar(20) not null comment '字典类型ID',
-    parent_id varchar(20) null comment '父节点',
-    type varchar(40) not null comment '字典类型',
-    code varchar(40) not null comment '字典数据编码',
-    label varchar(40) not null comment '字典数据标签',
-    status int not null comment '状态',
-    create_time timestamp null comment '创建时间',
-    create_user varchar(40) null comment '创建用户',
-    update_time timestamp null comment '更新时间',
-    update_user varchar(40) null comment '更新用户',
-    remark varchar(200) null
-) comment '字典数据';
+
+CREATE TABLE dic_dt_data (
+    id varchar(20) NOT NULL PRIMARY KEY,
+    dict_type_id varchar(20) NOT NULL COMMENT '字典类型ID',
+    parent_id varchar(20) NULL COMMENT '父节点',
+    type varchar(40) NOT NULL COMMENT '字典类型',
+    code varchar(40) NOT NULL COMMENT '字典数据编码',
+    label varchar(40) NOT NULL COMMENT '字典数据标签',
+    status int NOT NULL COMMENT '状态',
+    create_time timestamp NULL COMMENT '创建时间',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    remark varchar(200) NULL
+) COMMENT '字典数据';
 
 # 字典数据映射
+
 DROP TABLE IF EXISTS `dic_dt_data_map`;
-create table dic_dt_data_map
-(
-    id varchar(20) not null primary key ,
-    dict_data_id varchar(20) not null comment '字典数据ID',
-    type varchar(40) not null comment '字典类型',
-    group_code varchar(20) not null comment '集团编码',
-    target_code varchar(20) not null comment '映射字典数据表code',
-    label varchar(40) not null comment '字典数据标签',
-    code varchar(40) not null comment '字典数据编码',
-    status int not null comment '状态',
-    create_time timestamp null comment '创建时间',
-    create_user varchar(40) null comment '创建用户',
-    update_time timestamp null comment '更新时间',
-    update_user varchar(40) null comment '更新用户',    
-    remark varchar(200) null comment '备注'
-) comment '字典数据映射';
+
+CREATE TABLE dic_dt_data_map (
+    id varchar(20) NOT NULL PRIMARY KEY,
+    dict_data_id varchar(20) NOT NULL COMMENT '字典数据ID',
+    type varchar(40) NOT NULL COMMENT '字典类型',
+    group_code varchar(20) NOT NULL COMMENT '集团编码',
+    target_code varchar(20) NOT NULL COMMENT '映射字典数据表code',
+    label varchar(40) NOT NULL COMMENT '字典数据标签',
+    code varchar(40) NOT NULL COMMENT '字典数据编码',
+    status int NOT NULL COMMENT '状态',
+    create_time timestamp NULL COMMENT '创建时间',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    remark varchar(200) NULL COMMENT '备注'
+) COMMENT '字典数据映射';
 
 # 知识库类型
+
 DROP TABLE IF EXISTS `dic_kl_type`;
-create table dic_kl_type
-(
-    id varchar(20) not null primary key ,
-    code varchar(40) not null comment '知识库编码',
-    name varchar(40) not null comment '知识库名称',
-    description varchar(500) null comment '描述',
-    status int not null comment '状态',
-    create_time timestamp null comment '创建时间',
-    create_user varchar(40) null comment '创建用户',
-    update_time timestamp null comment '更新时间',
-    update_user varchar(40) null comment '更新用户',    
-    remark varchar(200) null comment '备注'
-) comment '知识库类型';
+
+CREATE TABLE dic_kl_type (
+    id varchar(20) NOT NULL PRIMARY KEY,
+    code varchar(40) NOT NULL COMMENT '知识库编码',
+    name varchar(40) NOT NULL COMMENT '知识库名称',
+    description varchar(500) NULL COMMENT '描述',
+    status int NOT NULL COMMENT '状态',
+    create_time timestamp NULL COMMENT '创建时间',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    remark varchar(200) NULL COMMENT '备注'
+) COMMENT '知识库类型';
 
 # 知识库数据
+
 DROP TABLE IF EXISTS `dic_kl_data`;
-create table dic_kl_data
-(
-    id varchar(20) not null primary key ,
-    kl_type_code varchar(20) not null comment '知识库类型编码',
-    kl_type_name varchar(40) not null comment '知识库类型名称',
-    parent_id varchar(20) null comment '父节点',
-    code varchar(40) not null comment '知识库数据编码',
-    label varchar(40) not null comment '知识库数据标签',
-    value varchar(500) null comment '知识库数据内容',
-    status int not null comment '状态',
-    create_time timestamp null comment '创建时间',
-    create_user varchar(40) null comment '创建用户',
-    update_time timestamp null comment '更新时间',
-    update_user varchar(40) null comment '更新用户',    
-    remark varchar(200) null comment '备注'
-) comment '知识库数据';
+
+CREATE TABLE dic_kl_data (
+    id varchar(20) NOT NULL PRIMARY KEY,
+    kl_type_code varchar(20) NOT NULL COMMENT '知识库类型编码',
+    kl_type_name varchar(40) NOT NULL COMMENT '知识库类型名称',
+    parent_id varchar(20) NULL COMMENT '父节点',
+    code varchar(40) NOT NULL COMMENT '知识库数据编码',
+    label varchar(40) NOT NULL COMMENT '知识库数据标签',
+    value varchar(500) NULL COMMENT '知识库数据内容',
+    status int NOT NULL COMMENT '状态',
+    create_time timestamp NULL COMMENT '创建时间',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    remark varchar(200) NULL COMMENT '备注'
+) COMMENT '知识库数据';

+ 30 - 27
SQL/dpt.ddl.sql

@@ -1,33 +1,36 @@
 ## 务调度系统数据表
+
 # 任务配置
+
 DROP TABLE IF EXISTS `dpt_task_cfg`;
-create table dpt_task_cfg
-(
-    id  varchar(40) not null primary key ,
-    group_code  varchar(20) null comment '集团编码',
-    app_code    varchar(40) null comment '应用编码',
-    project_id  varchar(40) null comment '项目ID',
-    code    varchar(20) not null comment '任务编码',
-    name    varchar(40) not null comment '任务名称',
-    type    varchar(20) not null comment '执行方式:http、jms',
-    config  json not null comment '执行方式配置参数',
-    params  json not null comment '调起参数',
-    time_rule   json not null comment '调起频率',
-    start_time  timestamp null comment '开始时间',
-    end_time    timestamp null comment '结束时间',
-    response_time   int not null comment '任务接口的处理时长,用于任务启停消峰控制',
-    level   varchar(20) not null comment '优先级,用于任务启停消峰控制',
-    remark  varchar(200) comment '备注'
-) comment '任务配置';
+
+CREATE TABLE dpt_task_cfg (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    group_code varchar(20) NULL COMMENT '集团编码',
+    app_code varchar(40) NULL COMMENT '应用编码',
+    project_id varchar(40) NULL COMMENT '项目ID',
+    code varchar(20) NOT NULL COMMENT '任务编码',
+    name varchar(40) NOT NULL COMMENT '任务名称',
+    type varchar(20) NOT NULL COMMENT '执行方式:http、jms',
+    config json NOT NULL COMMENT '执行方式配置参数',
+    params json NOT NULL COMMENT '调起参数',
+    time_rule json NOT NULL COMMENT '调起频率',
+    start_time timestamp NULL COMMENT '开始时间',
+    end_time timestamp NULL COMMENT '结束时间',
+    response_time int NOT NULL COMMENT '任务接口的处理时长,用于任务启停消峰控制',
+    level varchar(20) NOT NULL COMMENT '优先级,用于任务启停消峰控制',
+    remark varchar(200) COMMENT '备注'
+) COMMENT '任务配置';
 
 # 任务执行记录
+
 DROP TABLE IF EXISTS `dpt_task_record`;
-create table dpt_task_record
-(
-    id  varchar(40) not null primary key ,
-    task_id varchar(40) not null comment '任务配置ID',
-    start_time  timestamp null comment '开始时间',
-    end_time timestamp null comment '结束时间',
-    success int not null comment '1是,0否,否表示发生了异常',
-    error_info  json not null comment '错误信息'
-) comment '任务执行记录';
+
+CREATE TABLE dpt_task_record (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    task_id varchar(40) NOT NULL COMMENT '任务配置ID',
+    start_time timestamp NULL COMMENT '开始时间',
+    end_time timestamp NULL COMMENT '结束时间',
+    success int NOT NULL COMMENT '1是,0否,否表示发生了异常',
+    error_info json NOT NULL COMMENT '错误信息'
+) COMMENT '任务执行记录';

+ 364 - 338
SQL/org.ddl.sql

@@ -1,452 +1,478 @@
 ## 人员组织权限
+
 # 1、集团(多租户)
+
 DROP TABLE IF EXISTS `org_group`;
-create table org_group
-(
-    id varchar(40) not null primary key ,
-    code varchar(40) null comment '集团编码',
-    name varchar(255) null  comment '集团名称',
-    create_user varchar(40) null  comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
-    remark varchar(500) null comment '备注'
-) comment '集团';
+
+CREATE TABLE org_group (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    code varchar(40) NULL COMMENT '集团编码',
+    name varchar(255) NULL COMMENT '集团名称',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    remark varchar(500) NULL COMMENT '备注'
+) COMMENT '集团';
 
 # 2、公司
+
 DROP TABLE IF EXISTS `org_company`;
-create table org_company
-(
-    id varchar(40) not null primary key ,
-    code varchar(40) not null comment '公司编码',
-    name varchar(40) null comment '公司名称',
-    group_code varchar(40) not null comment '集团编码',
-    parent_id varchar(40) null comment '上级公司ID',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
-    remark varchar(500) null comment '备注'
-) comment '公司';
+
+CREATE TABLE org_company (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    code varchar(40) NOT NULL COMMENT '公司编码',
+    name varchar(40) NULL COMMENT '公司名称',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    parent_id varchar(40) NULL COMMENT '上级公司ID',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    remark varchar(500) NULL COMMENT '备注'
+) COMMENT '公司';
 
 # 3、部门
+
 DROP TABLE IF EXISTS `org_dept`;
-create table org_dept
-(
-    id varchar(40) not null primary key ,
-    dept_type varchar(40) not null comment '部门分类',
-    name varchar(40) not null  comment '部门名称',
-    company_id varchar(40) not null  comment '上级公司ID',
-    parent_dept_id varchar(40) not null  comment '上级部门ID,0:顶级部门',
-    project_id varchar(40) not null comment '项目ID',
-    group_code varchar(40) not null comment '集团编码',
-    type varchar(40) not null comment '部门分类',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_dept (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    dept_type varchar(40) NOT NULL COMMENT '部门分类',
+    name varchar(40) NOT NULL COMMENT '部门名称',
+    company_id varchar(40) NOT NULL COMMENT '上级公司ID',
+    parent_dept_id varchar(40) NOT NULL COMMENT '上级部门ID,0:顶级部门',
+    project_id varchar(40) NOT NULL COMMENT '项目ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    type varchar(40) NOT NULL COMMENT '部门分类',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '部门';
+) COMMENT '部门';
 
 # 4、岗位
+
 DROP TABLE IF EXISTS `org_job`;
-create table org_job
-(
-    id varchar(40) not null primary key ,
-    job_type varchar(40) not null comment '岗位类型',
-    name varchar(40) not null  comment '岗位名称',
-    group_code varchar(40) not null  comment '集团编码',
-    project_id varchar(40) not null  comment '项目ID',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_job (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    job_type varchar(40) NOT NULL COMMENT '岗位类型',
+    name varchar(40) NOT NULL COMMENT '岗位名称',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    project_id varchar(40) NOT NULL COMMENT '项目ID',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '岗位';
+) COMMENT '岗位';
 
 # 5、部门分类
+
 DROP TABLE IF EXISTS `org_dept_template`;
-create table org_dept_template
-(
-    id varchar(40) not null primary key  comment '',
-    name varchar(200) not null  comment '名称',
-    group_code varchar(40) not null  comment '集团ID',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_dept_template (
+    id varchar(40) NOT NULL PRIMARY KEY COMMENT '',
+    name varchar(200) NOT NULL COMMENT '名称',
+    group_code varchar(40) NOT NULL COMMENT '集团ID',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '部门分类';
+) COMMENT '部门分类';
 
 # 6、部门分类层级结构关系
+
 DROP TABLE IF EXISTS `org_dept_lv_template`;
-create table org_dept_lv_template
-(
-    id varchar(40) not null primary key ,
-    dept_type varchar(40) not null comment '部门分类',
-    parent_id varchar(40) not null  comment '上级部门分类ID',
-    group_code varchar(40) not null  comment '集团编码',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_dept_lv_template (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    dept_type varchar(40) NOT NULL COMMENT '部门分类',
+    parent_id varchar(40) NOT NULL COMMENT '上级部门分类ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '部门分类层级结构关系';
+) COMMENT '部门分类层级结构关系';
 
 # 7、岗位分类
+
 DROP TABLE IF EXISTS `org_job_template`;
-create table org_job_template
-(
-    id varchar(40) not null primary key ,
-    name varchar(40) not null  comment '名称',
-    group_code varchar(40) not null  comment '集团编码',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_job_template (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    name varchar(40) NOT NULL COMMENT '名称',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '岗位分类';
+) COMMENT '岗位分类';
 
 # 8、岗位分类与部门分类关系表
+
 DROP TABLE IF EXISTS `org_job_dept_template`;
-create table org_job_dept_template
-(
-    id varchar(40) not null primary key ,
-    job_type varchar(40) not null  comment '岗位类型',
-    dept_type varchar(40) not null  comment '上级部门分类ID',
-    group_code varchar(40) not null  comment '集团编码',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
-    remark varchar(500) null
-) comment '岗位分类与部门分类关系表';
 
+CREATE TABLE org_job_dept_template (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    job_type varchar(40) NOT NULL COMMENT '岗位类型',
+    dept_type varchar(40) NOT NULL COMMENT '上级部门分类ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    remark varchar(500) NULL
+) COMMENT '岗位分类与部门分类关系表';
 
 # 9、人员
+
 DROP TABLE IF EXISTS `org_person`;
-create table org_person
-(
-    id varchar(40) not null primary key ,
-    person_name varchar(40) null  comment '姓名',
-    gender int null  comment '性别',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_person (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    person_name varchar(40) NULL COMMENT '姓名',
+    gender int NULL COMMENT '性别',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '人员' ;
+) COMMENT '人员';
 
 # 10、账号
+
 DROP TABLE IF EXISTS `org_account`;
-create table org_account
-(
-    id varchar(40) not null primary key ,
-    username varchar(40) null  comment '账号',
-    password varchar(40) null  comment '密码',
-    person_id varchar(40) null  comment '人员ID',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_account (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    username varchar(40) NULL COMMENT '账号',
+    password varchar(40) NULL COMMENT '密码',
+    person_id varchar(40) NULL COMMENT '人员ID',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '账号';
+) COMMENT '账号';
 
 # 11、项目数据权限
+
 DROP TABLE IF EXISTS `org_auth_prj_data`;
-create table org_auth_prj_data
-(
-    id varchar(40) not null primary key ,
-    project_id varchar(40) not null comment '项目编码',
-    name varchar(40) not null  comment '项目名称',
-    group_code varchar(40) null  comment '集团名称',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_auth_prj_data (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    project_id varchar(40) NOT NULL COMMENT '项目编码',
+    name varchar(40) NOT NULL COMMENT '项目名称',
+    group_code varchar(40) NULL COMMENT '集团名称',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '项目数据权限';
+) COMMENT '项目数据权限';
 
 # 12、公司下的项目数据权限表
+
 DROP TABLE IF EXISTS `org_auth_company_prj`;
-create table org_auth_company_prj
-(
-    id varchar(40) not null primary key ,
-    company_id varchar(40) not null  comment '公司ID',
-    project_id varchar(40) not null  comment '项目ID',
-    group_code varchar(40) not null  comment '集团编码',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_auth_company_prj (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    company_id varchar(40) NOT NULL COMMENT '公司ID',
+    project_id varchar(40) NOT NULL COMMENT '项目ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '公司下的项目数据权限表';
+) COMMENT '公司下的项目数据权限表';
 
 # 13、项目下的公司数据表
+
 DROP TABLE IF EXISTS `org_rel_company_prj`;
-create table org_rel_company_prj
-(
-    id varchar(40) not null primary key ,
-    company_id varchar(40) not null  comment '公司ID',
-    project_id varchar(40) not null  comment '项目ID',
-    group_code varchar(40) not null  comment '集团编码',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_rel_company_prj (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    company_id varchar(40) NOT NULL COMMENT '公司ID',
+    project_id varchar(40) NOT NULL COMMENT '项目ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '项目下的公司数据表';
+) COMMENT '项目下的公司数据表';
 
 # 14、部门的项目数据权限表
+
 DROP TABLE IF EXISTS `org_auth_dept_prj`;
-create table org_auth_dept_prj
-(
-    id varchar(40) not null primary key ,
-    dept_id varchar(40) not null  comment '部门ID',
-    project_id varchar(40) not null  comment '项目ID',
-    group_code varchar(40) not null  comment '集团编码',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_auth_dept_prj (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    dept_id varchar(40) NOT NULL COMMENT '部门ID',
+    project_id varchar(40) NOT NULL COMMENT '项目ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '部门的项目数据权限表';
+) COMMENT '部门的项目数据权限表';
 
 # 15、岗位&部门关系表
+
 DROP TABLE IF EXISTS `org_cfg_dept_job`;
-create table org_cfg_dept_job
-(
-    id varchar(40) not null primary key ,
-    dept_id varchar(40) not null comment '部门id',
-    job_id varchar(40) not null comment '岗位id',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_dept_job (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    dept_id varchar(40) NOT NULL COMMENT '部门id',
+    job_id varchar(40) NOT NULL COMMENT '岗位id',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '岗位&部门关系表';
+) COMMENT '岗位&部门关系表';
 
 # 16、人员配置公司管理权限
+
 DROP TABLE IF EXISTS `org_cfg_person_company`;
-create table org_cfg_person_company
-(
-    id varchar(40) not null primary key ,
-    person_id varchar(40) not null comment '人员id',
-    company_id varchar(40) not null comment '公司id',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_person_company (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    person_id varchar(40) NOT NULL COMMENT '人员id',
+    company_id varchar(40) NOT NULL COMMENT '公司id',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '人员配置公司管理权限';
+) COMMENT '人员配置公司管理权限';
 
 # 17、人员配置项目数据权限
+
 DROP TABLE IF EXISTS `org_cfg_person_prj`;
-create table org_cfg_person_prj
-(
-    id varchar(40) not null primary key ,
-    person_id varchar(40) not null comment '人员id',
-    project_id varchar(40) not null comment '项目id',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_person_prj (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    person_id varchar(40) NOT NULL COMMENT '人员id',
+    project_id varchar(40) NOT NULL COMMENT '项目id',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '人员配置项目数据权限';
+) COMMENT '人员配置项目数据权限';
 
 # 18、人员与部门关系表
+
 DROP TABLE IF EXISTS `org_cfg_person_dept`;
-create table org_cfg_person_dept
-(
-    id varchar(40) not null primary key ,
-    person_id varchar(40) not null comment '账号id',
-    dept_id varchar(40) not null comment '部门id',
-    major_dept int not null comment '是否为主部门',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_person_dept (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    person_id varchar(40) NOT NULL COMMENT '账号id',
+    dept_id varchar(40) NOT NULL COMMENT '部门id',
+    major_dept int NOT NULL COMMENT '是否为主部门',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '人员与部门关系表';
+) COMMENT '人员与部门关系表';
 
 # 19、人员与岗位关系表
+
 DROP TABLE IF EXISTS `org_cfg_person_job`;
-create table org_cfg_person_job
-(
-    id varchar(40) not null primary key ,
-    person_id varchar(40) not null comment '人员id',
-    dept_job_id varchar(40) not null comment '部门岗位关系id',
-    major_job int not null comment '是否为主岗位',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_person_job (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    person_id varchar(40) NOT NULL COMMENT '人员id',
+    dept_job_id varchar(40) NOT NULL COMMENT '部门岗位关系id',
+    major_job int NOT NULL COMMENT '是否为主岗位',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '人员与岗位关系表';
+) COMMENT '人员与岗位关系表';
 
 # 20、产品线
+
 DROP TABLE IF EXISTS `org_product`;
-create table org_product
-(
-    id varchar(40) not null primary key ,
-    code varchar(40) not null  comment '产品线编码',
-    name varchar(40) not null  comment '产品线名称',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_product (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    code varchar(40) NOT NULL COMMENT '产品线编码',
+    name varchar(40) NOT NULL COMMENT '产品线名称',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '产品线';
+) COMMENT '产品线';
 
 # 21、应用
+
 DROP TABLE IF EXISTS `org_application`;
-create table org_application
-(
-    id varchar(40) not null primary key ,
-    code varchar(40) not null  comment '应用编码',
-    name varchar(40) not null  comment '应用名称',
-    category varchar(40) not null  comment '所属产品大类',
-    order int not null comment '排序',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_application (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    code varchar(40) NOT NULL COMMENT '应用编码',
+    name varchar(40) NOT NULL COMMENT '应用名称',
+    category varchar(40) NOT NULL COMMENT '所属产品大类',
+    app_order int NOT NULL COMMENT '排序',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '应用';
+) COMMENT '应用';
 
 # 22、功能
+
 DROP TABLE IF EXISTS `org_function`;
-create table org_function
-(
-    id varchar(40) not null primary key ,
-    code varchar(40) not null  comment '功能编码',
-    name varchar(40) not null  comment '功能名称',
-    app_code varchar(40) not null  comment '应用编码',
-    function_url varchar(200) null comment '功能跳转URL',
-    icon varchar(50) null comment '图标',
-    order int not null comment '排序',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_function (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    code varchar(40) NOT NULL COMMENT '功能编码',
+    name varchar(40) NOT NULL COMMENT '功能名称',
+    app_code varchar(40) NOT NULL COMMENT '应用编码',
+    function_url varchar(200) NULL COMMENT '功能跳转URL',
+    icon varchar(50) NULL COMMENT '图标',
+    func_order int NOT NULL COMMENT '排序',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '功能';
+) COMMENT '功能';
 
 # 23、功能层级
+
 DROP TABLE IF EXISTS `org_function_lv`;
-create table org_function_lv
-(
-    id varchar(40) not null primary key ,
-    function_code varchar(40) not null  comment '功能编码',
-    parent_code varchar(40) not null  comment '上级功能编码',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
-    remark varchar(500)
-) comment '功能层级';
 
+CREATE TABLE org_function_lv (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    function_code varchar(40) NOT NULL COMMENT '功能编码',
+    parent_code varchar(40) NOT NULL COMMENT '上级功能编码',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    remark varchar(500)
+) COMMENT '功能层级';
 
 # 24、集团配置应用
+
 DROP TABLE IF EXISTS `org_cfg_group_app`;
-create table org_cfg_group_app
-(
-    id varchar(40) not null primary key ,
-    app_code varchar(40) not null  comment '应用编码',
-    group_code varchar(40) not null  comment '集团编码',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
-    remark varchar(500)
-) comment '集团配置应用';
 
+CREATE TABLE org_cfg_group_app (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    app_code varchar(40) NOT NULL COMMENT '应用编码',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    remark varchar(500)
+) COMMENT '集团配置应用';
 
 # 25、集团配置功能
+
 DROP TABLE IF EXISTS `org_cfg_group_func`;
-create table org_cfg_group_func
-(
-    id varchar(40) not null primary key ,
-    function_code varchar(40) not null  comment '功能编码',
-    group_code varchar(40) not null  comment '集团编码',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_group_func (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    function_code varchar(40) NOT NULL COMMENT '功能编码',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '集团配置功能';
+) COMMENT '集团配置功能';
 
 # 26、项目配置应用
+
 DROP TABLE IF EXISTS `org_cfg_prj_app`;
-create table org_cfg_prj_app
-(
-    id varchar(40) not null primary key ,
-    app_code varchar(40) not null  comment '应用编码',
-    project_id varchar(40) not null  comment '项目ID',
-    group_code varchar(40) not null  comment '集团编码',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
-    remark varchar(500)
-) comment '项目配置应用';
 
+CREATE TABLE org_cfg_prj_app (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    app_code varchar(40) NOT NULL COMMENT '应用编码',
+    project_id varchar(40) NOT NULL COMMENT '项目ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
+    remark varchar(500)
+) COMMENT '项目配置应用';
 
 # 27、项目配置功能
+
 DROP TABLE IF EXISTS `org_cfg_prj_func`;
-create table org_cfg_prj_func
-(
-    id varchar(40) not null primary key ,
-    function_code varchar(40) not null  comment '功能编码',
-    project_id varchar(40) not null  comment '项目ID',
-    group_code varchar(40) not null  comment '集团编码',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_prj_func (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    function_code varchar(40) NOT NULL COMMENT '功能编码',
+    project_id varchar(40) NOT NULL COMMENT '项目ID',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '项目配置功能';
+) COMMENT '项目配置功能';
 
 # 28、岗位分类配置应用
+
 DROP TABLE IF EXISTS `org_cfg_job_app`;
-create table org_cfg_job_app
-(
-    id varchar(40) not null primary key ,
-    app_code varchar(40) not null  comment '应用编码',
-    job_type varchar(40) not null  comment '岗位类型',
-    group_code varchar(40) not null  comment '集团编码',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_job_app (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    app_code varchar(40) NOT NULL COMMENT '应用编码',
+    job_type varchar(40) NOT NULL COMMENT '岗位类型',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '岗位配置应用';
+) COMMENT '岗位配置应用';
 
 # 29、岗位分类配置功能
+
 DROP TABLE IF EXISTS `org_cfg_job_func`;
-create table org_cfg_job_func
-(
-    id varchar(40) not null primary key ,
-    function_code varchar(40) not null  comment '功能编码',
-    app_code varchar(40) not null  comment '应用编码',
-    job_type varchar(40) not null  comment '岗位类型',
-    group_code varchar(40) not null  comment '集团编码',
-    status int not null  comment '状态',
-    create_user varchar(40) null comment '创建用户',
-    create_time timestamp null comment '创建时间',
-    update_user varchar(40) null comment '更新用户',
-    update_time timestamp null comment '更新时间',
+
+CREATE TABLE org_cfg_job_func (
+    id varchar(40) NOT NULL PRIMARY KEY,
+    function_code varchar(40) NOT NULL COMMENT '功能编码',
+    app_code varchar(40) NOT NULL COMMENT '应用编码',
+    job_type varchar(40) NOT NULL COMMENT '岗位类型',
+    group_code varchar(40) NOT NULL COMMENT '集团编码',
+    status int NOT NULL COMMENT '状态',
+    create_user varchar(40) NULL COMMENT '创建用户',
+    create_time timestamp NULL COMMENT '创建时间',
+    update_user varchar(40) NULL COMMENT '更新用户',
+    update_time timestamp NULL COMMENT '更新时间',
     remark varchar(500)
-) comment '岗位配置功能';
+) COMMENT '岗位配置功能';