mysql新建表
drop table if exists per_manage;
create table per_manage (
id varchar(32) comment 'id',
hosp_dept_code varchar(32) default null comment '人员编码',
name varchar(32) default null comment '姓名',
medins_per_type varchar(32) default null comment '医务人员类别代码',
doc_reco_doc_prof varchar(32) default null comment '医生职称代码',
intro varchar(32) default null comment '简介',
dept_code varchar(32) default null comment '平台科室编码',
dept_name varchar(32) default null comment '平台科室名称',
org_code varchar(32) default null comment '医疗机构代码',
primary key (id)
) engine=innodb auto_increment=1 comment = '人员管理';