Feature #5 申请友链时自动抓取网页信息 #6
4
blog.sql
4
blog.sql
@@ -78,7 +78,9 @@ CREATE TABLE `links`
|
|||||||
`l_url` varchar(255) not null comment '首页地址',
|
`l_url` varchar(255) not null comment '首页地址',
|
||||||
`l_icon_path` varchar(255) not null comment '友链的icon地址',
|
`l_icon_path` varchar(255) not null comment '友链的icon地址',
|
||||||
`l_desc` varchar(255) COLLATE utf8mb4_unicode_ci not null comment '友链的说明描述',
|
`l_desc` varchar(255) COLLATE utf8mb4_unicode_ci not null comment '友链的说明描述',
|
||||||
`is_delete` boolean not null default false comment '该数据是否被删除'
|
`is_delete` boolean not null default false comment '该数据是否被删除',
|
||||||
|
`l_email` varchar(255) comment '网站管理员的邮箱',
|
||||||
|
`l_notification` boolean default false comment '是否通知了'
|
||||||
) comment '友站表';
|
) comment '友站表';
|
||||||
|
|
||||||
CREATE TABLE `visitor`
|
CREATE TABLE `visitor`
|
||||||
|
|||||||
@@ -14,4 +14,6 @@ public class LinkReq {
|
|||||||
private String iconPath;
|
private String iconPath;
|
||||||
private String desc;
|
private String desc;
|
||||||
private boolean open;
|
private boolean open;
|
||||||
|
private String email;
|
||||||
|
private boolean notification;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user