SET NAMES utf8mb4; -- 省 alter table sys_dept add province varchar(50) null comment '省'; -- 市 alter table sys_dept add city varchar(50) null comment '市'; -- 县 alter table sys_dept add district varchar(50) null comment '县'; -- 详细地址 alter table sys_dept add address varchar(255) null comment '详细地址'; -- 公司简称 alter table sys_dept add dept_abbreviation varchar(255) null comment '公司简称'; -- 公司概述 alter table sys_dept add remark varchar(255) null comment '公司概述'; -- 公司logo alter table sys_dept add logo varchar(255) null comment '公司logo';