sx 11 months ago
parent
commit
fa95fb5f15
1 changed files with 1 additions and 0 deletions
  1. 1 0
      ems-cloud/sql/ems_sys.sql

+ 1 - 0
ems-cloud/sql/ems_sys.sql

@@ -5,6 +5,7 @@ SET NAMES utf8mb4;
 -- ----------------------------
 -- ----------------------------
 drop table if exists sys_dept;
 drop table if exists sys_dept;
 create table sys_dept (
 create table sys_dept (
+
   dept_id           bigint(20)      not null auto_increment    comment '部门id',
   dept_id           bigint(20)      not null auto_increment    comment '部门id',
   parent_id         bigint(20)      default 0                  comment '父部门id',
   parent_id         bigint(20)      default 0                  comment '父部门id',
   ancestors         varchar(50)     default ''                 comment '祖级列表',
   ancestors         varchar(50)     default ''                 comment '祖级列表',