mirror of
https://github.com/Estom/notes.git
synced 2026-04-13 18:00:27 +08:00
博客系统设计
This commit is contained in:
88
blog/博客/01 博客系统需求文档.md
Normal file
88
blog/博客/01 博客系统需求文档.md
Normal file
@@ -0,0 +1,88 @@
|
||||
## 1 需求说明
|
||||
|
||||
|
||||
### 1.1 需求背景
|
||||
|
||||
工作已经快两年了,自己已经成为了半个技术人了。有很多很多东西想要想要整理一下分享出来,并不是期待能有多少人关注自己,而是希望自己有一天能够回忆起自己对于这份工作的热爱,不止是money。
|
||||
|
||||
另一方面,在大厂拧螺丝几乎让自己没有任何机会从头到尾搭建一个完善的工程,作为一个普通的后端工程师,在一个庞大的企业架构里,只能负责一小部分。这一次,也是为了自己能够从想要搭建一个自己的博客开始,能够实践一些最前沿的技术,例如Java23、SpringBoot3、Vue3等。
|
||||
|
||||
|
||||
### 1.2 需求目标
|
||||
|
||||
搭建一套前后端分离的博客系统。
|
||||
|
||||
为了能够全面掌控自己的数据,自己的笔记都是一Markdown形式存在的,通过github进行托管。由于各种各样的笔记软件数据安全性存在问题、无法提供长久的支持,很可能过几天就倒闭了,而且其对书写方式的要求也各种各样,并能满足自己的爱好。所以选择了这种最朴素数据记录方式,如果有任何展示的需求,就可以基于Markdown的语法转换、渲染成各种自己喜欢的格式。
|
||||
|
||||
|
||||
|
||||
### 1.3 技术选型
|
||||
|
||||
当前主要有两套技术方案,一种是纯前端的静态博客,其主要有以下部分组成。
|
||||
* 内容数据:博客内容,可以使Markdown或者其他内容撰写的文章,是展示的核心内容,一般以文件的方式存储在硬盘上。
|
||||
* 元数据:描述内容的数据,方便用来管理和显示。例如目录和标签,如果是新添加的博客可以按照不同博客的元数据系统展示博客内容。但如果是旧的文章迁移到新的博客系统中,就需要通过特定的脚本或者人工补充的方式将元数据添加到博客系统当中。
|
||||
* 主题框架:展示内容的模板。模板规定了前端的风格,包括展示的格式、布局等,是不同博客系统核心的最大差异的部分。
|
||||
* 渲染工具:将内容数据、元数据、主题框架结合起来生成前端脚本。往往是一个一次性运行的脚本,其生成的结果一般是纯静态的前端工程,可以直接在网页上显示。
|
||||
|
||||
其代表的工具主要有Hexo、vuepress等。
|
||||
|
||||
另一种是前后端分离的博客系统,其主要有以下部分组成。
|
||||
* 内容数据:博客内容。可以使各种格式,一般内容会与元数据都存储在数据库中,方便检索和管理。
|
||||
* 后端模块:基于数据库实现内容的增删改查,启动服务器提供Rest接口。
|
||||
* 前端模块:通过Rest接口访问后端获取数据,在前端获取数据。或者直接获取后端渲染好的数据进行展示。
|
||||
|
||||
每个语言都有其代表的前端工具和后端工具。后端工具主要包括:java-springboot、nodejs-express、go-gin、python-django等。前端主要包括页面模板(adminlte、antd、element)和数据渲染工具(vue、react)
|
||||
|
||||
|
||||
纯静态博客与有后端的博客最大的不同就是渲染的时机。纯静态博客的渲染是在部署的时候完成渲染,生成可以直接通过路径访问的完整的HTML页面,一般可以托管在githubpages这样的无后端系统中,最大的弊端是无法在运行是动态修改数据,只能通过重试部署的方式在Server再次渲染(或者增量渲染),但由于所有页面都是生成好的,其加载速度也非常快。有后端的博客系统可以在用户请求的时候,采取传统MVC方式在后端完成动态的渲染,生成HTML页面返回给前端,也可以采取前后端的分离的方案,后端值负责维护数据,在ClientSide完成页面的渲染,有后端的系统也会更加灵活,用户可以与博客系统进行数据交互,例如实现聊天室、评论功能等。
|
||||
|
||||
|
||||
综合以上的调研结果,主要选择当前最先进的技术体系,一方面为了分享,另一方面为了实践,选择上主要贴合自己的技术栈。
|
||||
|
||||
后端
|
||||
- 数据库:MySQL
|
||||
- Web框架:Java23 + SpringBoot3
|
||||
- 数据管理:vscode + GitHub + Markdown
|
||||
|
||||
前端
|
||||
- Vue + Element + AdminLTE
|
||||
|
||||
|
||||
### 1.4 需求分析
|
||||
主要的模块可以分为一下模块。
|
||||
不需要多用户管理。只需要生成的静态用户信息。可以放一个JSON配置文件,系统的启动的时候去加载。
|
||||
|
||||
文章同步功能P0:文章的编辑通过vscode/markdown/github三件套实现,不需要博客系统本身具有撰写文章的能力,只需要能根据原始数据生成文章的数据。
|
||||
* 设置自动同步和定时扫描任务,从原始数据扫描文章,加载到MySQL数据库中,能够自动对比文章的不同,实现增量数据的处理,能够清理已经过期的文章。
|
||||
|
||||
|
||||
文章管理功能P0.博客系统的核心功能,用来组织文章相关的数据,实现文章列表、详情的展示、文章元数据的展示、文章不同方式的索引。
|
||||
* 查询搜索功能:基于多个条件索引文章,创建时间、修改时间、目录、标签、文章内容关键字、是否隐藏进行动态查询分页。
|
||||
* 查看详情功能:显示文章的详情页内容、统计数据等。
|
||||
* 分类管理功能:以列表的形式展示文章的目录。
|
||||
* 标签管理功能:能够自动生成文章的标签。能够以标签云的形式展示文章的标签。
|
||||
* 数据统计功能。博客系统内部,业务相关的统计数据。每篇文章的浏览量、博客系统的访问量等。
|
||||
|
||||
|
||||
文章评论功能P1
|
||||
* 创建评论功能:能够回复文章或指定的评论。
|
||||
* 删除评论功能:同一个用户可以删除自己评论。
|
||||
* 博客留言功能:用户可以在留言板上留言。
|
||||
|
||||
|
||||
用户管理功能P1,前端需要对某些管理员的功能进行隐藏和展示,后端需要对管理员的功能进行进行鉴权。
|
||||
* 用户登录功能。任何人访问博客都可以建立真实账户或者匿名用户,用于留言板和系统评论功能。
|
||||
* 权限校验功能。设置不同的API和对应的权限。管理员账户需要一些魔法和特殊能力。例如查看文章
|
||||
* 个人资料管理。自动生成匿名用户并且能够识别是否是同一个匿名用户访问、添加关联邮箱、繁琐创建完整用户。用户可以创建、编辑和管理自己的个人资料,包括头像、昵称、密码等。
|
||||
|
||||
|
||||
后台管理功能P2。实现对文章元数据的修改。
|
||||
* 文章隐藏功能。能够查看隐藏文章,并设置文章隐藏功能,对质量较低、还没有完善的草稿进行隐藏。(管理员)
|
||||
* 文章置顶功能。能够显示置顶的文章。能够置顶一篇文章(管理员)。
|
||||
* 系统监控功能。后台数据分析功能
|
||||
|
||||
自动部署能力P2。
|
||||
* 系统部署:工程打包成docker镜像,方便系统快速迁移。
|
||||
* 数据变更:通过github触发自动部署流水线。
|
||||
|
||||
|
||||
142
blog/博客/02 博客系统设计文档.md
Normal file
142
blog/博客/02 博客系统设计文档.md
Normal file
@@ -0,0 +1,142 @@
|
||||
|
||||
## 1 架构设计
|
||||
|
||||
### 架构和技术说明
|
||||
|
||||

|
||||
|
||||
本项目主要架构包括三部分
|
||||
1. 数据层。通过vscode和markdown创建的笔记内容数据,存储在github上。需要对笔记内容进行重构,以适应多种形式的输出。
|
||||
2. 业务层。提供博客系统的业务数据访问。
|
||||
1. Sync模块从github同步数据,存储到本地数据库中对数据进行分析和处理,通过只能算法生成博客的元数据,包括tag、description等,对数据内容进行筛选(根据配置)和完整性校验,可以通过定时任务和Github的流水线触发数据的增量处理任务。
|
||||
2. User模块提供了用户的登录认证、权限校验功能,允许用户匿名访问系统也允许用户创建一个简单的账户,区分匿名用户、普通用户、管理用户的权限区别。
|
||||
3. Article模块提供文章的多级索引,包括目录、tag、日期、关键字等方便用户快速找到自己感兴趣的文章,也方便自己回顾阅读,同时提供了一些基础的交互能力和数据统计能力,包括点赞、评论、访问量。整个系统通过标准Rest接口对外提供访问。
|
||||
3. 渲染层。通过vue前端框架和element组件库,快速构建前端页面,提供交互能力。访问后端的Rest接口进行渲染。
|
||||
|
||||
|
||||
## 2 模型设计
|
||||
|
||||
### 2.1 对象设计
|
||||
文章的对象模型主要包括以下五个:文章、分类、标签、评论、用户。
|
||||
|
||||

|
||||
|
||||
### 2.2 逻辑设计
|
||||
在逻辑设计的时候应该遵循以下原则
|
||||
1. 不允许使用外键
|
||||
2. 尽量减少连表操作。连表操作会大大增加数据管理的难度。
|
||||
|
||||
文章与用户关系:在博文中记录的应该是用户名,这样前端直接根据用户名称进行查询,就可以找到对应的文章。而不是传递用户id。
|
||||
|
||||
文章与目录:文章与目录是一对多的关系。可以直接在文章中存储目录的id。不同目录下可能存在同名的子目录。所以目录名称的唯一键应该是 父目录+子目录。
|
||||
|
||||
文章与标签:文章与标签是多对多的关系。不需要建立关联关系表,直接将标签以逗号分割的形式添加到文章里即可。多选可以使用 Like or的方法直接进行查询。标签的名称是唯一键,主要用来显示标签云,不用每次都统计标签的数量
|
||||
|
||||
文章与评论:文章与评论是一对多关系。不需要建立关联关系。评论中存储文章id的外键。评论之间可以相互回复,parent_id标识其上一级评论,如果parent_id为零,表示直接回复当篇文章。
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
### 2.3 物理设计
|
||||
|
||||
```sql
|
||||
|
||||
--【1】创建 blog数据库
|
||||
CREATE DATABASE blog SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
--【2】创建用户表 user
|
||||
CREATE TABLE `user` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID',
|
||||
`user_name` varchar(32) NOT NULL COMMENT '用户名',
|
||||
`password` varchar(64) DEFAULT NULL COMMENT '用户密码',
|
||||
`nickname` varchar(32) DEFAULT NULL COMMENT '用户名',
|
||||
`email` varchar(64) DEFAULT NULL COMMENT '用户邮箱',
|
||||
`role` tinyint DEFAULT 0 COMMENT '注册时间0表示普通用户1表示管理员2表示匿名用户',
|
||||
`photo` varchar(256) DEFAULT NULL COMMENT '用户头像',
|
||||
`uuid` varchar(32) DEFAULT NULL COMMENT '唯一标识',
|
||||
`ip` varchar(20) NOT NULL COMMENT '用户IP',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `user_name` (`user_name`),
|
||||
KEY `email` (`email`)
|
||||
);
|
||||
|
||||
|
||||
--【3】创建分类表 \category
|
||||
|
||||
CREATE TABLE `category` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '目录ID',
|
||||
`name` varchar(100) NOT NULL COMMENT '标签名称',
|
||||
`parent` bigint NOT NULL DEFAULT '0' COMMENT '目录ID,0表示顶层目录',
|
||||
`description` text DEFAULT NULL COMMENT '目录下README.MD文件的内容',
|
||||
PRIMARY KEY (`id`),
|
||||
UNITUQ KEY `path`(`parent`,`name`)
|
||||
)COMMENT='分类表';
|
||||
|
||||
|
||||
|
||||
--【4】创建分类表 tag
|
||||
|
||||
CREATE TABLE `tag` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(32) DEFAULT '' COMMENT '标签名称',
|
||||
`count` int DEFAULT '0' COMMENT '权重数量',
|
||||
`description` varchar(256) DEFAULT NULL COMMENT '评论数量',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `name`(`name`)
|
||||
) COMMENT='标签表';
|
||||
|
||||
|
||||
|
||||
|
||||
--【5】创建文章表 article
|
||||
CREATE TABLE `article` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '博文ID',
|
||||
`user_id` bigint NOT NULL COMMENT '发表用户ID',
|
||||
`category_id` bigint NOT NULL COMMENT '目录ID',
|
||||
`title` varchar(128) NOT NULL COMMENT '博文标题',
|
||||
`content` longtext NOT NULL COMMENT '博文内容',
|
||||
`description` text NOT NULL COMMENT '博文简介',
|
||||
`love` int NOT NULL DEFAULT 0 COMMENT '喜欢量',
|
||||
`view` int NOT NULL DEFAULT 0 COMMENT '浏览量',
|
||||
`order` int NOT NULL DEFAULT 0 COMMENT '评论总数',
|
||||
`state` tinyint NOT NULL DEFAULT 0 COMMENT '状态0标识正常,1表示草稿或隐藏',
|
||||
`path` varchar(256) NOT NULL COMMENT '文章相对路径',
|
||||
`cover` varchar(256) DEFAULT NULL COMMENT '文章封面图片路径',
|
||||
PRIMARY KEY (`article_id`),
|
||||
KEY `user_id` (`user_id`),
|
||||
KEY `category_id`(`category_id`)
|
||||
) COMMENT='文章表';
|
||||
|
||||
--【6】创建文章标签表 tag
|
||||
CREATE TABLE `article_tag` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT,
|
||||
`article_id` bigint NOT NULL COMMENT '文章id',
|
||||
`tag_id` bigint NOT NULL COMMENT '标签id',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `article_tag_id`(`article_id`,`tag_id`)
|
||||
) COMMENT='文章标签表';
|
||||
|
||||
|
||||
--【7】创建评论表 comment
|
||||
CREATE TABLE `comment` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT,
|
||||
`user_id` bigint NOT NULL COMMENT '创建者id',
|
||||
`article_id` bigint NOT NULL COMMENT '文章id',
|
||||
`parent_id` bigint NOT NULL DEFAULT 0 COMMENT '父评论ID'
|
||||
`content` varchar(256) DEFAULT '' COMMENT '评论内容',
|
||||
PRIMARY KEY (`id`)
|
||||
)COMMENT='评论表';
|
||||
|
||||
|
||||
--【8】忽略外键约束
|
||||
-- ALTER TABLE blog_article ADD CONSTRAINT FK_ARTICLE_TAGID FOREIGN KEY(tag_id) REFERENCES blog_tag(id);
|
||||
-- ALTER TABLE blog_article ADD CONSTRAINT FK_ARTICLE_USERID FOREIGN KEY(user_id) REFERENCES blog_auth(id);
|
||||
|
||||
-- ALTER TABLE blog_comment ADD CONSTRAINT FK_COMMENT_USERID FOREIGN KEY(user_id) REFERENCES blog_tag(id);
|
||||
-- ALTER TABLE blog_comment ADD CONSTRAINT FK_COMMENT_ARTICLEID FOREIGN KEY(article_id) REFERENCES blog_article(id);
|
||||
|
||||
```
|
||||
|
||||
31
blog/博客/03 博客系统详细设计.md
Normal file
31
blog/博客/03 博客系统详细设计.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# 功能模块设计
|
||||
|
||||
## 1 文章同步功能
|
||||
|
||||
### 数据同步
|
||||
|
||||
### 构建目录
|
||||
|
||||
### 构建文章
|
||||
|
||||
### 构建标签
|
||||
|
||||
### 保存数据
|
||||
|
||||
|
||||
## 2 文章管理功能
|
||||
|
||||
|
||||
|
||||
## 3 评论管理功能
|
||||
|
||||
|
||||
## 4 用户管理功能
|
||||
|
||||
|
||||
## 5 后台管理功能
|
||||
|
||||
|
||||
|
||||
## 6 自动部署功能
|
||||
|
||||
740
blog/博客/draw/ER.drawio.svg
Normal file
740
blog/博客/draw/ER.drawio.svg
Normal file
@@ -0,0 +1,740 @@
|
||||
<svg host="65bd71144e" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="721px" height="761px" viewBox="-0.5 -0.5 721 761" content="<mxfile><diagram id="X03snOlxasRXa0Irbqj0" name="Page-1">1Z1vb5s4GMA/jV9ehTEY+2Vo0m3SnVRpOt3dS5bQBo2GitK1vU9/tjFJMA+XQMBONWkDBwj8/Pj5T4bI7dP7lzJ53v5RbNIc+d7mHZEl8n2CqfhbDnzUA4zzeuCxzDb1ED4MfM/+TfWgp0dfs0360jqwKoq8yp7bg+tit0vXVWssKcvirX3YQ5G3v/U5eUw7A9/XSd4d/SvbVFv9FKF3GP+aZo/b5puxpz95SpqD9cDLNtkUb0dDZIXIbVkUVb319H6b5pJdw6U+767n0/2NlemuOusEpu+j+mgeLt2IZ9W7u2In/om31VMu9rDYFNctP/4WO95N2Oz+I3ebneV7a+9D771USVktJPvDZbs3q+//pXgt1/p2/EhPcFI+pvowLS3yTo/O00/4JS2eUvHV4oAyzZMq+9WetURP/uP+uAMfsaERwbgCbywubAVWgLuw3NGKphIufIJXutsYtMTIXSZvTH1+nqB10TV6ygE6Po2gHTjaRkdcoWN4tNRdBzpnQsf8T04O+87Q0U+u6pi79RpNInWuwIXOuA01EeCNjpIVZukR+XAH4pxJngABjywh0N/9K8lf9UXRKkI8QAuGVhSJqYi766csXnebdKOhvG2zKv3+nKjHeRMBGSQWAIJfaVml7/8r1E1A5+lVoOM5n2k/+e0QHeEm5NkeRUbUu5wQ6RASn3TEJs9FcJiepvEghOW2yItSnUceHlK6XiuXvCx+pkefbCL+w/P0GY1EJq9VMRHSNlEcdImGAFAyAdAQEDmKxFqMQyl7iwjFQBh0LuAJ2AQNjEbciD04FIDDkfCcFisFZ4ViwP+0CSc6vRbngkOGut6jA10SdHUyxq5MMRnqOI9/bgo8t+fsuclg+zwuSh3Pi3V5OUwfBWN5DYwS2tZKX3c0xHByYPrU+yITX9tn8ygP21eoJ1GfZFDf38V5ExEOnYj3rKrngQW+3pcT8Zt344lVUA8cJkPufBzPzPBwRVziPi0z8VBpiSYMYTigQNwtiGliv1P51LnA+c4sTmArbz8bOmepmmB4anUmBM5SLqGdMsZs4AJn4Man+aznqiBwzjxFPjwpP0cmB2DCPVsIBvsc1hAQWwguyJJHfmsF3XjByUUk9sa5UFMw9W0xrS/RSkiEiC0RX6i0DUVAgt11gjAEMjazJQjp8IXn0FdqovlWRdCZwaNT1bXcsXPmaNLxwc21sHMW3zR3Y6o1hhiVedYYoziWVxMqbuEhdqeqIrHMv16brouoRV0XzeNnnZIdoO2IMleyE/lXw8Bd69XwzOxMDCJnMUdzN0YhS6qLSNVqlih2ry6o1y5mWXWNmoYZQ80u7rSalaxcl7PaeIjFQijulpYVnQDFgbJGRBoel3T2j9kU+5og0wadoM9ECzssNoR9jusQRJhrKqukcgOogFjkZVQYfJvC1FNWj5UwqUAt9q4bF+YWcUGFdrPx5du9YzwO+UBx/964cbTwEdQ9ZVNz+23dFFhcbH5P+CDkJlQqfIVioAxgkw416Fhs0/AhxyiSTSwCykr1+fCVamuJXBs4ExPFFjFBzhGVdGS4yWQjlNBC14EJG5iAmHM2TJCXJFykW6mA5KJTPoGM2RcSmVN3iRuYQouYetylUBk01cYp3G7pN60Qu8DsD29gnAKs0ZFHLXbk+awLtkPPUt6tF+WJduLmJbfZO2xo22PZR1PNJer77LTYnLxQaM7kdL06DRtz4dwhjpUaxnIFmTNebounH68vdvxAw08OvK70U0D6J0n4zVNVPCXCQMUrclakiIYXKWZiELpLen6qYgPIzlmyFKyhMpUFC9TGSvouHQ1jK1HoIjFIgGzFpWvsLMkABINMrlhgmxb4hk0zQZ5rHDspXfNC0xlHAnmVtcSq9xHiJVgSs2gczQQuJMZzGUcCuA7OpHjy13r7PLPghgQREwAZ5aHpp/HRDp93Q0MfR4Rj4gWkp8Y5g4RDicCrknDT/YOiytkkHDBdI/2Ai384YPTKmNxp6hFhswlprH7HxJ5+B4LbOmsQE7kMGJYpcZfSj9np1q65pD/wZ5J+a4F/84Mts8s+8W94GOz/TJQG6KyE+dIADanrTQNg7i4NEAJJWJPFyzZ5lpvr1zL/iMtk/VNK4Skw7TDnIc+ev+rtPPmR5vfFS1ZlxU6MlfUjxZJYtk7y343Pn7LNRt5LnOTZoxzI04fj4xd6eH/cPG9WY8M7x0G3Zg6FVftY66J5gqrAdRb4tlHsWGWBsarBUMQ8KGsunrVqzxP4yt9xMlgPNfDXgqBsi+7HDwnGQRrme/Udn1F2htbRJO++Q/a2kwq4rlKiUWe1mXtvpmH63PuoN1y7dnn0O6+cdI21tfdgTUeVBTdHtjswXos9O4Sz9nptCEQlK1UtlZ0tJzNrNhePWRG0uXh6PJp2j7MYEffIlhP89Iaj0mBb7JjFNpCm9x+Ww247+acCS4yaK4ssgu3t/WuJLpXued0sEd85/9WY0OBlUxDhMP5TL+zQpeqEu9+uSNpo5I5OBHhlsrF0KTuWdb/S0i0ds2JusV8pgnTXdXa/mZQsanjWTSj8+ec3t1LjG2tqH/nY4NETGEaIqw3GUQzEPsPodFAAwPrtm5HXIBalhUMaRyyfhXK0VBLj8vdILqJjuqGBxV5tDrmhobRQAops9F/Kdm2ndAxbblMfc0Afd1i4zCHUd3MNv7NwdrqgfYmzs/nYyBDMV9fiUNOw+vlEoSpk93CM2AUB2RRLwixt2FQYUMtj51df9wGE9bjhIrCmuJL5dI3YPfxXGrWUHv4/ErL6Dw==</diagram></mxfile>">
|
||||
<defs/>
|
||||
<g>
|
||||
<path d="M 365 320 L 365 383.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 365 388.88 L 361.5 381.88 L 365 383.63 L 368.5 381.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 209.63 304.63 L 124.61 385.61" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 120.81 389.23 L 123.46 381.87 L 124.61 385.61 L 128.29 386.94 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 370 140 L 380 80" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 305 170 L 280 170" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 425 161.82 L 475 155" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 425 195.71 L 470 215" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 330 140 L 295 110" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 410.4 140 L 447.32 115.61" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 389 200 L 410.2 226.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 413.48 230.6 L 406.38 227.32 L 410.2 226.5 L 411.84 222.95 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 348.85 200 L 337.69 220.73" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<rect x="305" y="140" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 170px; margin-left: 306px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
用户
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="365" y="174" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
用户
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="60" cy="15" rx="25" ry="15" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 15px; margin-left: 36px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
id
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="60" y="19" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
id
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="465" cy="105" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 105px; margin-left: 441px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
昵称
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="465" y="109" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
昵称
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="500" cy="155" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 155px; margin-left: 476px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
邮箱
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="500" y="159" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
邮箱
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 530 420 L 593.63 420" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 598.88 420 L 591.88 423.5 L 593.63 420 L 591.88 416.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 365 570 L 365 613.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 365 618.88 L 361.5 611.88 L 365 613.63 L 368.5 611.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 185 420 L 126.37 420" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 121.12 420 L 128.12 416.5 L 126.37 420 L 128.12 423.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 97.69 515.82 L 40.4 551.62" fill="none" stroke="none" pointer-events="stroke"/>
|
||||
<path d="M 35.95 554.41 L 40.03 547.73 L 40.4 551.62 L 43.74 553.67 Z" fill="none" stroke="none" pointer-events="all"/>
|
||||
<path d="M 406.04 388.02 L 427.32 325.61" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 421.43 450 L 467.32 474.39" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 386 450 L 435 520" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 350.71 450 L 321.87 510.58" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 331.8 450 L 282.68 494.39" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 421.43 390 L 467.32 365.61" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 313.18 390 L 287.99 375.42" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 305 444.55 L 275.66 456.55" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 347.99 390 L 326 351.2" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<rect x="305" y="390" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 420px; margin-left: 306px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
博文
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="365" y="424" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
博文
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 425 677.27 L 475 700" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 365 680 L 365 730" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 308 680 L 270 700" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<rect x="305" y="620" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 650px; margin-left: 306px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
分类/栏目
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="365" y="654" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
分类/栏目
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 644.12 450 L 622.57 490.7" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 672.35 450 L 689 490.44" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 660 390 L 660 350" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<rect x="600" y="390" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 420px; margin-left: 601px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
标签
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="660" y="424" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
标签
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="495" cy="215" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 215px; margin-left: 471px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
密码
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="495" y="219" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
密码
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="255" cy="170" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 170px; margin-left: 231px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
头像
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="255" y="174" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
头像
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="60" cy="115" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 115px; margin-left: 36px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
创建时间
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="60" y="119" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
创建时间
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="60" cy="65" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 65px; margin-left: 36px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
更新时间
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="60" y="69" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
更新时间
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="380" cy="65" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 65px; margin-left: 356px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
用户IP
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="380" y="69" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
用户IP
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="445" cy="315" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 315px; margin-left: 421px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
标题
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="445" y="319" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
标题
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="485" cy="355" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 355px; margin-left: 461px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
内容
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="485" y="359" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
内容
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="485" cy="485" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 485px; margin-left: 461px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
点赞量
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="485" y="489" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
点赞量
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="435" cy="535" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 535px; margin-left: 411px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
浏览量
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="435" y="539" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
浏览量
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="315" cy="525" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 525px; margin-left: 291px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
优先级
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="315" y="529" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
优先级
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="265" cy="505" rx="25" ry="15" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 505px; margin-left: 241px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
全路径
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="265" y="509" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
全路径
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 365 200 L 365 260" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 365 260 L 395 290 L 365 320 L 335 290 Z" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 290px; margin-left: 336px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
发表
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="365" y="294" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
发表
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 60 390 L 60 360" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 54.71 450 L 47.63 490.08" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 83.57 450 L 115 490" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<rect x="0" y="390" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 420px; margin-left: 1px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
评论
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="60" y="424" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
评论
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 425 420 L 470 420" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 500 390 L 530 420 L 500 450 L 470 420 Z" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 420px; margin-left: 471px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
设置
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="500" y="424" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
设置
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 365 450 L 365 510" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 365 510 L 395 540 L 365 570 L 335 540 Z" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 540px; margin-left: 336px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
设置
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="365" y="544" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
设置
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 305 420 L 245 420" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 215 390 L 245 420 L 215 450 L 185 420 Z" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 420px; margin-left: 186px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
关联
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="215" y="424" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
关联
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 329.29 200 L 240 275" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 225 260 L 255 290 L 225 320 L 195 290 Z" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 290px; margin-left: 196px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
发表
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="225" y="294" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
发表
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 120 5 L 115 5 Q 110 5 110 15 L 110 55 Q 110 65 105 65 L 102.5 65 Q 100 65 105 65 L 107.5 65 Q 110 65 110 75 L 110 115 Q 110 125 115 125 L 120 125" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" transform="translate(110,0)scale(-1,1)translate(-110,0)" pointer-events="all"/>
|
||||
<rect x="135" y="50" width="60" height="30" fill="none" stroke="none" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 65px; margin-left: 136px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
公共属性
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="165" y="69" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
公共属性
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="45" cy="505" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 505px; margin-left: 21px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
评论内容
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="45" y="509" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
评论内容
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 234.08 473.22 L 115 520" fill="none" stroke="none" pointer-events="stroke"/>
|
||||
<ellipse cx="115" cy="505" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 505px; margin-left: 91px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
父评论
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="115" y="509" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
父评论
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="270" cy="715" rx="25" ry="15" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 715px; margin-left: 246px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
分类名称
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="270" y="719" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
分类名称
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="365" cy="745" rx="25" ry="15" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 745px; margin-left: 341px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
父分类
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="365" y="749" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
父分类
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="475" cy="715" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 715px; margin-left: 451px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
分类描述
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="475" y="719" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
分类描述
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="615" cy="505" rx="25" ry="15" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 505px; margin-left: 591px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
名称
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="615" y="509" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
名称
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="695" cy="505" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 505px; margin-left: 671px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
描述
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="695" y="509" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
描述
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="660" cy="335" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 335px; margin-left: 636px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
权重
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="660" y="339" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
权重
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="60" cy="345" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 345px; margin-left: 36px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
点赞量
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="60" y="349" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
点赞量
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="295" cy="95" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 95px; margin-left: 271px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
UUID
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="295" y="99" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
UUID
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="425" cy="245" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 245px; margin-left: 401px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
角色
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="425" y="249" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
角色
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="270" cy="365" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 365px; margin-left: 246px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
状态
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="270" y="369" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
状态
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="315" cy="335" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 335px; margin-left: 291px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
封面
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="315" y="339" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
封面
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 310 450 L 255 480" fill="none" stroke="none" pointer-events="stroke"/>
|
||||
<ellipse cx="255" cy="465" rx="25" ry="15" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 465px; margin-left: 231px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
简介
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="255" y="469" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
简介
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<ellipse cx="330" cy="235" rx="25" ry="15" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 235px; margin-left: 306px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
用户名
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="330" y="239" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
用户名
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
</g>
|
||||
<switch>
|
||||
<g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/>
|
||||
<a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank">
|
||||
<text text-anchor="middle" font-size="10px" x="50%" y="100%">
|
||||
Text is not SVG - cannot display
|
||||
</text>
|
||||
</a>
|
||||
</switch>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 61 KiB |
227
blog/博客/draw/arch.drawio.svg
Normal file
227
blog/博客/draw/arch.drawio.svg
Normal file
@@ -0,0 +1,227 @@
|
||||
<svg host="65bd71144e" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="421px" height="471px" viewBox="-0.5 -0.5 421 471" content="<mxfile><diagram id="Oz-RU2HJz3CfyxLeOMPL" name="Page-1">zZjLcpswFIafRstmAHFdGpukXWSmEze9LFVQjKaAPLIcmz59pSBhiEiTaVzkjYfzIwTn4z9HyAAu6+MNQ9vylha4Ap5THAFcAc8LglD8SqHthDhJOmHDSNFJ7klYk99YiY5S96TAu9FATmnFyXYs5rRpcM5HGmKMHsbDHmg1vusWbbAhrHNUmeo3UvBSZRE4J/0jJptS39l11Jka6cFK2JWooIeBBDMAl4xS3h3VxyWuJDvNpbvu+oWz/YMx3PC3XOB1Fzyiaq9yU8/FW50so/umwHK8A2B6KAnH6y3K5dmDeLtCK3ldicgVh2o6zDg+vvhIbp+oMAimNeasFUP0BRqWMgfU8eGE2tf8yiHmSIlIvd5NP/eJgDhQEKaBwMsHEswKxDeA3BBe7n9eHJbINbG4U1jCM1Bx49d9ggvRNFTY0AZPEZBj/p6/mJLuWa5GBarbIbbBOp1pSgxXiJPH8ezvSblvWW/NUOTB2u/D4Ic0x1Wgw9VRmaWLWhWdjYw/E5nA8MLXXS7WPOsl4vkWSyQ0qNwi9kusdo11LjCx2Tqif60j5yqMhqX0wblyIHylmp6iz5gR8aCYvavEInslFhlmWrdNbt1IvUn00pzMaCRzCbrDOy6UT4140w8y7Yvj45l8+mIc8vHPwCcx+NzvRAXYZtK/exue0Y1uAGXBOMkr+1553pTn5TLP55urd6uDFgpnaqH63sPPlPsMZNcgXYI4XiGOgMQrUnO+4Horbi9M4dxh4QKmhyXWbeK6wcgm/sRuaLKlnMUmE9vDLARJCOIIZBFYpGBhfibbRgQnum4c/CdC5n5Rgkl8sIglqjgGqfkBNHsPfrYuzUrI3C6ALJBg4lCiSl2QptYJQZuEzK2DtI6oLFVlK5Bm1gn58xES4ekvwadzg/9VYfYH</diagram></mxfile>">
|
||||
<defs/>
|
||||
<g>
|
||||
<rect x="0" y="0" width="420" height="170" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<rect x="0" y="200" width="420" height="170" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<rect x="0" y="410" width="120" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 440px; margin-left: 1px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
Github
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="60" y="444" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
Github
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 260 440 L 283.63 440" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 288.88 440 L 281.88 443.5 L 283.63 440 L 281.88 436.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 140 440 L 126.37 440" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 121.12 440 L 128.12 436.5 L 126.37 440 L 128.12 443.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<rect x="140" y="410" width="120" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 440px; margin-left: 141px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
Vscode
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="200" y="444" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
Vscode
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="290" y="410" width="120" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 440px; margin-left: 291px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
Markdown
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="350" y="444" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
Markdown
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 80.14 350 L 80.37 401.65" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 80.39 406.9 L 76.86 399.92 L 80.37 401.65 L 83.86 399.89 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<rect x="20" y="290" width="120" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 320px; margin-left: 21px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
Sync
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="80" y="324" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
Sync
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="20" y="220" width="390" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 388px; height: 1px; padding-top: 240px; margin-left: 21px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
Rest Interface
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="215" y="244" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
Rest Interface
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="160" y="290" width="120" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 320px; margin-left: 161px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
User
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="220" y="324" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
User
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="290" y="290" width="120" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 320px; margin-left: 291px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
Article
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="350" y="324" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
Article
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<path d="M 210 160 L 210 193.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/>
|
||||
<path d="M 210 198.88 L 206.5 191.88 L 210 193.63 L 213.5 191.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<rect x="15" y="100" width="390" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 388px; height: 1px; padding-top: 130px; margin-left: 16px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
VUE(Data + Template Render)
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="210" y="134" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
VUE(Data + Template Render)
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="15" y="20" width="85" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 83px; height: 1px; padding-top: 50px; margin-left: 16px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
文章
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="58" y="54" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
文章
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="120" y="20" width="85" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 83px; height: 1px; padding-top: 50px; margin-left: 121px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
用户
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="163" y="54" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
用户
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="220" y="20" width="85" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 83px; height: 1px; padding-top: 50px; margin-left: 221px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
分类
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="263" y="54" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
分类
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
<rect x="320" y="20" width="85" height="60" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/>
|
||||
<g transform="translate(-0.5 -0.5)">
|
||||
<switch>
|
||||
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 83px; height: 1px; padding-top: 50px; margin-left: 321px;">
|
||||
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
|
||||
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
|
||||
标签
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</foreignObject>
|
||||
<text x="363" y="54" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">
|
||||
标签
|
||||
</text>
|
||||
</switch>
|
||||
</g>
|
||||
</g>
|
||||
<switch>
|
||||
<g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/>
|
||||
<a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank">
|
||||
<text text-anchor="middle" font-size="10px" x="50%" y="100%">
|
||||
Text is not SVG - cannot display
|
||||
</text>
|
||||
</a>
|
||||
</switch>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
360
blog/博客/draw/logic.drawio.svg
Normal file
360
blog/博客/draw/logic.drawio.svg
Normal file
@@ -0,0 +1,360 @@
|
||||
<svg host="65bd71144e" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="771px" height="577px" viewBox="-0.5 -0.5 771 577" content="<mxfile><diagram id="URNENjsy1ZhaHGpxpS0s" name="Page-1">7Zxdb9s2FIZ/jYHtZpD17UvH6boBLVAsKNZeDYzEyEQoUaDo2O6vHymTkp2jdEolsxlAIAjMI1KmzkNKL18RXgSb8vCeo3r7keWYLnwvPyyC24XvR1Es/6vA8RRIV6tToOAkP4WWfeCOfMM66OnojuS4uagoGKOC1JfBjFUVzsRFDHHO9pfVHhi9/NYaFRgE7jJEYfRvkoutvorI6+N/YFJszTcvPX2kRKayDjRblLP9WSh4twg2nDFx+lQeNpiq3Jm8nNr9/sLRrmMcV2JUg+TU4gnRnb64XYO57pw4mitu9qSkqJKlmwdWiTt9xJPlbEto/gEd2U59YyNQ9mhKN1vGyTdZH1F5aCkD8jAXGqgfq7MRSjeMMi4DFWu/oG90p06mv4bjRjb7ZK5s+Sz0ER0uKn5AjTAdZJSiuiH3bZdVwxLxglQ3TAhW6kowcTqXT5gLfDgL6US+x6zEgh9lFXM01FD1qI4CPar3/Rjp6mzPxocf6yDS47Lozt2jkx80vRdIpoCkOrS+J/JSBQAqr0m0PDh7xM8ADDBBlBSVLFL8oJqppBA5H9Y6LFitTlajjFTFh7bObdhH/tLXqkJMtn2g7ZjfkjzHlULGBBLovhtSNZNdbnMR3cg/mZ2N91u0iGTHN7K87MvyT1XnYsMqeS2ItPSwhL/HagAMcU1Ggz0aPmM5TsfYDbvLCVmhUpbWT4hnW8R/CfxfHdEJRCPfHtHlChCtUdPsGVdPnQ5pHDqkU5AmqcVJ6gGkFcke3SSdlejSCy0iDQFSXCJC3Qydj2fgWeQZAZ6cqcysd1Ujs41ztWgg1dGJo4lUI5vqKIbP0i0T7GyW+lHspukkoKlFceTD9efnz3/envFc+qnjOWn14tlURgOr0NppovlgBjY1EVy5IJVsmRznD73eHwoirUnMItQbqYeCIJ0OM4BrFucPDXHtRv2b9IfSYcP2H8dyHpY2naEYrjkzJHDB+NHxnImnTVsogN6tIIJip2bn42nVFAp8OEGl8Gi7v6asKlpyDucEnDY9oSAAOHPcZJzUgrDKeQgzYrVpCgXwMUplziRP9/CciNGmFRRAx/aJ4L3DOH19YtMBCuAChfEcc8dxOkeb5k8AnbxGZkfdVt1rkzk8A4vCJ4TeT93uRHOKZzaeqUXFE8F7bKZy5oDOBzRYWtQ+4YBzgArAz7ns3+GmjybJs12YSTSOY7cUnQQSOgbOyRviGo4H+xNc9hA6BW5z16w0bfrs4YDPznatiecm5TSMNu31EBoEzr67ClWrJru5Ewy8BXMCaIZtBn5sUwBF8MnpBNAQ127Yv0kBFMFHphNAs9K0KYAi+OQ0nXcTczpKmyIogjugnQi6ClW7Igi67RkrSzwwM50G+m8NFK0uTaA4Hem2dy+uJ8GE+2adBhqclOlosD9BAyXQZdfbn89357ktXVOZWt1yCd+E9Tu63G6uiSRtCqEYvjJxmnY+lFbVTwwtICdqr4PV5n7LZAVY4bzARrEajSlKI0nxgYgvOnHq81f1WWbnVLo9nB26PZpCJXv1xZxAFc5aqWLfrC2Zdi+qzIbteKa7m2g3S0rlAutqJoPqUr6bco4pEuQJX5x9Uj7hLc8IEve2eJ6FQrga+Qjr7o+TgML7nlsoDHFNXv0Kw+pCAXreAwsFh3MCTptrhAR63/L26lDOhNLmIsF813gFclU1kdhQE7rpJ9YO1O5B510+6CLzY4XmFKdO6VbPMtx1Y1TSjdf2atlnPo+RfeMSHsKEmx1aMyd8zTk6nlXQk25iJqHg+8HUvhlFnQ7MAfPThf8LJD98R/GukM14YICbN/BXX5/IYv9DpadU9r/2Grz7Fw==</diagram></mxfile>">
|
||||
<defs>
|
||||
<clipPath id="mx-clip-4-305-132-26-0">
|
||||
<rect x="4" y="305" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-331-132-26-0">
|
||||
<rect x="4" y="331" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-357-132-26-0">
|
||||
<rect x="4" y="357" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-383-132-26-0">
|
||||
<rect x="4" y="383" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-409-132-26-0">
|
||||
<rect x="4" y="409" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-435-132-26-0">
|
||||
<rect x="4" y="435" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-461-132-26-0">
|
||||
<rect x="4" y="461" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-487-132-26-0">
|
||||
<rect x="4" y="487" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-4-513-132-26-0">
|
||||
<rect x="4" y="513" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-266-132-26-0">
|
||||
<rect x="219" y="266" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-292-132-26-0">
|
||||
<rect x="219" y="292" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-318-132-26-0">
|
||||
<rect x="219" y="318" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-344-132-26-0">
|
||||
<rect x="219" y="344" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-370-132-26-0">
|
||||
<rect x="219" y="370" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-396-132-26-0">
|
||||
<rect x="219" y="396" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-422-132-26-0">
|
||||
<rect x="219" y="422" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-448-132-26-0">
|
||||
<rect x="219" y="448" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-474-132-26-0">
|
||||
<rect x="219" y="474" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-500-132-26-0">
|
||||
<rect x="219" y="500" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-526-132-26-0">
|
||||
<rect x="219" y="526" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-552-132-26-0">
|
||||
<rect x="219" y="552" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-634-341-132-26-0">
|
||||
<rect x="634" y="341" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-634-367-132-26-0">
|
||||
<rect x="634" y="367" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-634-393-132-26-0">
|
||||
<rect x="634" y="393" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-634-419-132-26-0">
|
||||
<rect x="634" y="419" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-31-132-26-0">
|
||||
<rect x="219" y="31" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-57-132-26-0">
|
||||
<rect x="219" y="57" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-83-132-26-0">
|
||||
<rect x="219" y="83" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-219-109-132-26-0">
|
||||
<rect x="219" y="109" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-446-132-26-0">
|
||||
<rect x="454" y="446" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-472-132-26-0">
|
||||
<rect x="454" y="472" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-498-132-26-0">
|
||||
<rect x="454" y="498" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-524-132-26-0">
|
||||
<rect x="454" y="524" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-550-132-26-0">
|
||||
<rect x="454" y="550" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-264-132-26-0">
|
||||
<rect x="454" y="264" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-290-132-26-0">
|
||||
<rect x="454" y="290" width="132" height="26"/>
|
||||
</clipPath>
|
||||
<clipPath id="mx-clip-454-316-132-26-0">
|
||||
<rect x="454" y="316" width="132" height="26"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g>
|
||||
<path d="M 0 300 L 0 274 L 140 274 L 140 300" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/>
|
||||
<path d="M 0 300 L 0 534 L 140 534 L 140 300" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 0 300 L 140 300" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" text-anchor="middle" font-size="12px">
|
||||
<text x="69.5" y="291.5">
|
||||
user
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-305-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="317.5">
|
||||
id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-331-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="343.5">
|
||||
username:varchar(32)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-357-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="369.5">
|
||||
passworld:varchar(64)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-383-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="395.5">
|
||||
nickname:varchar(32)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-409-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="421.5">
|
||||
email:varchar(64)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-435-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="447.5">
|
||||
role:unsigned tinyint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-461-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="473.5">
|
||||
photo:varchar(256)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-487-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="499.5">
|
||||
UUID:varchar(128)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-4-513-132-26-0)" font-size="12px">
|
||||
<text x="5.5" y="525.5">
|
||||
ip:varchar(32)
|
||||
</text>
|
||||
</g>
|
||||
<path d="M 215 261 L 215 235 L 355 235 L 355 261" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 215 261 L 215 573 L 355 573 L 355 261" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 215 261 L 355 261" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" text-anchor="middle" font-size="12px">
|
||||
<text x="284.5" y="252.5">
|
||||
article
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-266-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="278.5">
|
||||
id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-292-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="304.5">
|
||||
user_id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-318-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="330.5">
|
||||
category_id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-344-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="356.5">
|
||||
title:varchar(128)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-370-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="382.5">
|
||||
content:longtext
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-396-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="408.5">
|
||||
description:varchar(256)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-422-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="434.5">
|
||||
love:int
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-448-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="460.5">
|
||||
view:int
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-474-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="486.5">
|
||||
order:int
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-500-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="512.5">
|
||||
state:tinyint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-526-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="538.5">
|
||||
path:varchar(256)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-552-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="564.5">
|
||||
cover:varchar(256)
|
||||
</text>
|
||||
</g>
|
||||
<path d="M 630 336 L 630 310 L 770 310 L 770 336" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 630 336 L 630 440 L 770 440 L 770 336" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 630 336 L 770 336" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" text-anchor="middle" font-size="12px">
|
||||
<text x="699.5" y="327.5">
|
||||
tag
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-634-341-132-26-0)" font-size="12px">
|
||||
<text x="635.5" y="353.5">
|
||||
id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-634-367-132-26-0)" font-size="12px">
|
||||
<text x="635.5" y="379.5">
|
||||
name:varchar(32)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-634-393-132-26-0)" font-size="12px">
|
||||
<text x="635.5" y="405.5">
|
||||
count:int
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-634-419-132-26-0)" font-size="12px">
|
||||
<text x="635.5" y="431.5">
|
||||
description:varchar(256)
|
||||
</text>
|
||||
</g>
|
||||
<path d="M 215 26 L 215 0 L 355 0 L 355 26" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 215 26 L 215 130 L 355 130 L 355 26" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 215 26 L 355 26" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" text-anchor="middle" font-size="12px">
|
||||
<text x="284.5" y="17.5">
|
||||
category
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-31-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="43.5">
|
||||
id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-57-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="69.5">
|
||||
name:varchar(32)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-83-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="95.5">
|
||||
parent:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-219-109-132-26-0)" font-size="12px">
|
||||
<text x="220.5" y="121.5">
|
||||
description:varchar(256)
|
||||
</text>
|
||||
</g>
|
||||
<path d="M 450 441 L 450 415 L 590 415 L 590 441" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 450 441 L 450 571 L 590 571 L 590 441" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 450 441 L 590 441" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" text-anchor="middle" font-size="12px">
|
||||
<text x="519.5" y="432.5">
|
||||
comment
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-446-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="458.5">
|
||||
id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-472-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="484.5">
|
||||
article_id:bigint(128)
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-498-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="510.5">
|
||||
content:text
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-524-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="536.5">
|
||||
parent:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-550-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="562.5">
|
||||
description:varchar(256)
|
||||
</text>
|
||||
</g>
|
||||
<path d="M 450 298 L 361.17 275.56" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 356.08 274.27 L 363.73 272.6 L 361.17 275.56 L 362.01 279.38 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 450 259 L 450 233 L 590 233 L 590 259" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 450 259 L 450 337 L 590 337 L 590 259" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 450 259 L 590 259" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" text-anchor="middle" font-size="12px">
|
||||
<text x="519.5" y="250.5">
|
||||
article_tag
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-264-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="276.5">
|
||||
id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-290-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="302.5">
|
||||
article_id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<g fill="rgb(0, 0, 0)" font-family="Helvetica" pointer-events="none" clip-path="url(#mx-clip-454-316-132-26-0)" font-size="12px">
|
||||
<text x="455.5" y="328.5">
|
||||
tag_id:bigint
|
||||
</text>
|
||||
</g>
|
||||
<path d="M 509.59 467 L 358.98 278.97" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 355.7 274.87 L 362.81 278.15 L 358.98 278.97 L 357.34 282.52 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 590 324 L 636.59 334.59" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 641.71 335.75 L 634.11 337.61 L 636.59 334.59 L 635.66 330.79 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 215 300 L 146.27 311.91" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 141.1 312.81 L 147.4 308.16 L 146.27 311.91 L 148.6 315.06 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 281.83 313 L 216.51 45.19" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
<path d="M 215.26 40.09 L 220.32 46.06 L 216.51 45.19 L 213.52 47.72 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 20 KiB |
Reference in New Issue
Block a user