代码生成
使用admin登录管理后台,菜单路径如下:首页/系统工具/代码生成
-- auto-generated definition
create table biz_book
(
book_id bigint auto_increment comment '电话本ID'
primary key,
book_name varchar(50) not null comment '姓名',
book_phone varchar(50) not null comment '手机号',
book_birthday datetime not null comment '生日',
create_time datetime null comment '创建时间'
)
comment '电话本';