123123213

欢迎使用Markdown编辑器

你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。

新的改变

我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:

  1. 全新的界面设计 ,将会带来全新的写作体验;
  2. 在创作中心设置你喜爱的代码高亮样式,Markdown 将代码片显示选择的高亮样式 进行展示;
  3. 增加了 图片拖拽 功能,你可以将本地的图片直接拖拽到编辑区域直接展示;
  4. 全新的 KaTeX数学公式 语法;
  5. 增加了支持甘特图的mermaid语法1 功能;
  6. 增加了 多屏幕编辑 Markdown文章功能;
  7. 增加了 焦点写作模式、预览模式、简洁写作模式、左右区域同步滚轮设置 等功能,功能按钮位于编辑区域与预览区域中间;
  8. 增加了 检查列表 功能。

功能快捷键

撤销:Ctrl/Command + Z
重做:Ctrl/Command + Y
加粗:Ctrl/Command + B
斜体:Ctrl/Command + I
标题:Ctrl/Command + Shift + H
无序列表:Ctrl/Command + Shift + U
有序列表:Ctrl/Command + Shift + O
检查列表:Ctrl/Command + Shift + C
插入代码:Ctrl/Command + Shift + K
插入链接:Ctrl/Command + Shift + L
插入图片:Ctrl/Command + Shift + G
查找:Ctrl/Command + F
替换:Ctrl/Command + G

合理的创建标题,有助于目录的生成

直接输入1次#,并按下space后,将生成1级标题。
输入2次#,并按下space后,将生成2级标题。
以此类推,我们支持6级标题。有助于使用TOC语法后生成一个完美的目录。

如何改变文本的样式

强调文本 强调文本

加粗文本 加粗文本

标记文本

删除文本

引用文本

H2O is是液体。

210 运算结果是 1024.

插入链接与图片

链接: link.

图片: Alt

带尺寸的图片: Alt

居中的图片: Alt

居中并且带尺寸的图片: Alt

当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。

如何插入一段漂亮的代码片

博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.

// An highlighted block
var foo = 'bar';

生成一个适合你的列表

  • 项目
    • 项目
      • 项目
  1. 项目1
  2. 项目2
  3. 项目3
  • 计划任务
  • 完成任务

创建一个表格

一个简单的表格是这么创建的:

项目Value
电脑$1600
手机$12
导管$1

设定内容居中、居左、居右

使用:---------:居中
使用:----------居左
使用----------:居右

第一列第二列第三列
第一列文本居中第二列文本居右第三列文本居左

SmartyPants

SmartyPants将ASCII标点字符转换为“智能”印刷标点HTML实体。例如:

TYPEASCIIHTML
Single backticks'Isn't this fun?'‘Isn’t this fun?’
Quotes"Isn't this fun?"“Isn’t this fun?”
Dashes-- is en-dash, --- is em-dash– is en-dash, — is em-dash

创建一个自定义列表

Markdown
Text-to- HTML conversion tool
Authors
John
Luke

如何创建一个注脚

一个具有注脚的文本。2

注释也是必不可少的

Markdown将文本转换为 HTML

KaTeX数学公式

您可以使用渲染LaTeX数学表达式 KaTeX:

Gamma公式展示 Γ ( n ) = ( n − 1 ) ! ∀ n ∈ N \Gamma(n) = (n-1)!\quad\forall n\in\mathbb N Γ(n)=(n1)!nN 是通过欧拉积分

Γ ( z ) = ∫ 0 ∞ t z − 1 e − t d t   . \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. Γ(z)=0tz1etdt.

你可以找到更多关于的信息 LaTeX 数学表达式here.

新的甘特图功能,丰富你的文章

Mon 06 Mon 13 Mon 20 已完成 进行中 计划一 计划二 现有任务 Adding GANTT diagram functionality to mermaid
  • 关于 甘特图 语法,参考 这儿,

UML 图表

可以使用UML图表进行渲染。 Mermaid. 例如下面产生的一个序列图:

张三 李四 王五 你好!李四, 最近怎么样? 你最近怎么样,王五? 我很好,谢谢! 我很好,谢谢! 李四想了很长时间, 文字太长了 不适合放在一行. 打量着王五... 很好... 王五, 你怎么样? 张三 李四 王五

这将产生一个流程图。:

链接
长方形
圆角长方形
菱形
  • 关于 Mermaid 语法,参考 这儿,

FLowchart流程图

我们依旧会支持flowchart的流程图:

Created with Raphaël 2.2.0 开始 我的操作 确认? 结束 yes no
  • 关于 Flowchart流程图 语法,参考 这儿.

导出与导入

导出

如果你想尝试使用此编辑器, 你可以在此篇文章任意编辑。当你完成了一篇文章的写作, 在上方工具栏找到 文章导出 ,生成一个.md文件或者.html文件进行本地保存。

导入

如果你想加载一篇你写过的.md文件,在上方工具栏可以选择导入功能进行对应扩展名的文件导入,
继续你的创作。


  1. mermaid语法说明 ↩︎

  2. 注脚的解释 ↩︎

SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for biz_notice -- ---------------------------- DROP TABLE IF EXISTS `biz_notice`; CREATE TABLE `biz_notice` ( `id` bigint NOT NULL COMMENT 'id', `title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '标题', `content` text CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT '推送内容', `notice_type` tinyint DEFAULT NULL COMMENT '通知方式:1-消息列表 2-弹框提醒', `status` tinyint DEFAULT NULL COMMENT '状态:0-未发布 1-已发布', `user_type` tinyint DEFAULT NULL COMMENT '通知对象:1-所有用户 2-指定用户', `user_json` text CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT '通知对象', `delete_flag` tinyint(1) DEFAULT NULL COMMENT '是否删除: 0-未删除 1-已删除', `create_by` bigint DEFAULT NULL COMMENT '创建人', `create_date` datetime DEFAULT NULL COMMENT '创建时间', `update_by` bigint DEFAULT NULL COMMENT '更新人', `update_date` datetime DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of biz_notice -- ---------------------------- BEGIN; INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1907258902501306369, '111', '111', 1, 1, 1, NULL, 1, 1, '2025-04-02 10:28:52', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1907264118760116226, '11111', '111111', 1, 1, 1, NULL, 0, 1, '2025-04-02 10:49:36', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1907731744170958849, '222222222222222222222222222222', '<p>123</p>', 2, 1, 1, NULL, 1, 1, '2025-04-03 17:47:46', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909052100966068225, '123', '<p>123</p>', 1, 1, 1, NULL, 0, 1, '2025-04-07 09:14:24', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909052414150553602, '账号管理', '<p>d</p>', 1, 1, 1, NULL, 1, 1, '2025-04-07 09:15:39', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909054687446544386, 'vvvv', '<h3>sdaasd<strong>asdasdasdsadsad</strong></h3>', 2, 1, 1, NULL, 0, 1, '2025-04-07 09:24:41', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909067212691013633, '123', '<p>213</p>', 1, 1, 2, NULL, 0, 1, '2025-04-07 10:14:27', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909068515026599938, '123', '<p>213</p>', 1, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 0, 1, '2025-04-07 10:19:37', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909086798111023105, '11', '<p>111</p>', 1, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 0, 1, '2025-04-07 11:32:16', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909086915975159810, '111', '<p>111</p>', 1, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 0, 1, '2025-04-07 11:32:45', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909087570206892034, '11', '<p>11</p>', 1, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 1, 1, '2025-04-07 11:35:21', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909125598598111234, '123', '<p>123</p>', 2, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 0, 1, '2025-04-07 14:06:27', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909127175069212674, 'vvvv', '<p>vvvvv</p>', 3, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 0, 1, '2025-04-07 14:12:43', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909141346812895234, '11', '<p>111</p>', 3, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 1, 1, '2025-04-07 15:09:02', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1909145757152931842, '111', '<p>111</p>', 3, 1, 2, '[{\"name\":\"江苏省\",\"id\":\"320000000000\"}]', 0, 1, '2025-04-07 15:26:33', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910152875333709825, '6666', '<p>666666666666666</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"bJOOtjDDfMYE2aT6O4kjKQ\"}]', 0, 1, '2025-04-10 10:08:29', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910153154816962561, '6666', '<p>666666666666666</p>', 2, 1, 2, '[{\"name\":\"admin\",\"idEncrypt\":\"bJOOtjDDfMYE2aT6O4kjKQ\"}]', 0, 1, '2025-04-10 10:09:36', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910156996020760578, '666', '<p>666</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"lTNMUcSx5synT_KyXgkmFg\"}]', 0, 1, '2025-04-10 10:24:52', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910157061565149186, '111', '<p>11</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"eWHEaGOelEauY2cT2ChtvA\"},{\"name\":\"cuitao\",\"id\":\"BsgUYjSEIE3aeo0l5r_VMQ\"},{\"name\":\"ceshi\",\"id\":\"vxwdNCFGQD6-XHompLXp1XxB1JSbDlbj8W262G20Eqc\"}]', 0, 1, '2025-04-10 10:25:07', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910164690328809474, '111', '<p>11</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"ghkubOzs9pxhZ26v7c7HLw\"},{\"name\":\"cuitao\",\"id\":\"O9PsulK0zAcUuQ_BDdRdcA\"},{\"name\":\"ceshi\",\"id\":\"TPRu4sz39VgMCtj7akJ70YiD0hanPLAPEnyHsklBDww\"}]', 1, 1, '2025-04-10 10:55:26', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910164948765044738, '111', '<p>11</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"ghkubOzs9pxhZ26v7c7HLw\"},{\"name\":\"cuitao\",\"id\":\"O9PsulK0zAcUuQ_BDdRdcA\"},{\"name\":\"ceshi\",\"id\":\"TPRu4sz39VgMCtj7akJ70YiD0hanPLAPEnyHsklBDww\"}]', 1, 1, '2025-04-10 10:56:28', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910164993832841217, '111', '<p>11</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"ghkubOzs9pxhZ26v7c7HLw\"},{\"name\":\"cuitao\",\"id\":\"O9PsulK0zAcUuQ_BDdRdcA\"},{\"name\":\"ceshi\",\"id\":\"TPRu4sz39VgMCtj7akJ70YiD0hanPLAPEnyHsklBDww\"}]', 1, 1, '2025-04-10 10:56:38', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910170064716967938, '111', '<p>111</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"q5WNlo7Bo6u2JNGfX4iGYg\"},{\"name\":\"cuitao\",\"id\":\"Zr2T9NXxtVHmjbOMZjJp7A\"},{\"name\":\"ceshi\",\"id\":\"jG_5ky9ShdA1kMdk5eONZVsgu6BZuK2UgL_bBr189lw\"}]', 1, 1, '2025-04-10 11:16:47', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910170306233380866, '111', '<p>111</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"q5WNlo7Bo6u2JNGfX4iGYg\"},{\"name\":\"cuitao\",\"id\":\"Zr2T9NXxtVHmjbOMZjJp7A\"},{\"name\":\"ceshi\",\"id\":\"jG_5ky9ShdA1kMdk5eONZVsgu6BZuK2UgL_bBr189lw\"}]', 1, 1, '2025-04-10 11:17:45', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910170924876443649, '111', '<p>111</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"q5WNlo7Bo6u2JNGfX4iGYg\"},{\"name\":\"cuitao\",\"id\":\"Zr2T9NXxtVHmjbOMZjJp7A\"},{\"name\":\"ceshi\",\"id\":\"jG_5ky9ShdA1kMdk5eONZVsgu6BZuK2UgL_bBr189lw\"}]', 1, 1, '2025-04-10 11:20:12', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910171326518800385, '111', '<p>111</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"q5WNlo7Bo6u2JNGfX4iGYg\"},{\"name\":\"cuitao\",\"id\":\"Zr2T9NXxtVHmjbOMZjJp7A\"},{\"name\":\"ceshi\",\"id\":\"jG_5ky9ShdA1kMdk5eONZVsgu6BZuK2UgL_bBr189lw\"}]', 1, 1, '2025-04-10 11:21:48', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910172215484846081, '11', '<p>11</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"TS1Td8GHCkk4ZnSAtBQloA\"},{\"name\":\"cuitao\",\"id\":\"jR9LPyV0oajy2gBO0DrQPA\"},{\"name\":\"ceshi\",\"id\":\"6dUVrJLPXOSxOJn4Hd7xLAdfCWDs0GkScOqbnMT7Rq4\"}]', 1, 1, '2025-04-10 11:25:20', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910173040705785857, '111', '<p>111</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"Idj3N1HI1VKc6_gn0btcWA\"},{\"name\":\"cuitao\",\"id\":\"oGcgQRzn70MmmMOoZKxvCA\"},{\"name\":\"ceshi\",\"id\":\"O_zlyH8lY23u_TrDcn4I5DbEustA4gY9zMiek2iSdIw\"}]', 1, 1, '2025-04-10 11:28:37', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910173570433777666, '111', '<p>11</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"},{\"name\":\"cuitao\",\"id\":\"2\"},{\"name\":\"ceshi\",\"id\":\"901357442854227969\"}]', 0, 1, '2025-04-10 11:30:43', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910214488641732610, '12', '<p>3123</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:13:19', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910214525014736897, '3423', '<p>42424234</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:13:27', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910214557520592898, '2342', '<p>3423424</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:13:35', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910214590378770434, '23424', '<p>2423423</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:13:43', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910215461523136514, '11', '<p>11</p>', 1, 1, 1, NULL, 0, 1, '2025-04-10 14:17:11', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218073949577217, '1231', '<ul><li>1231313312</li></ul>', 2, 1, 1, NULL, 0, 1, '2025-04-10 14:27:34', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218124532883458, '3213', '<ol><li>1231231231234131</li><li>313131313</li></ol>', 2, 1, 1, NULL, 0, 1, '2025-04-10 14:27:46', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218230426476545, '12312', '<p>312312312321</p>', 2, 1, 1, NULL, 0, 1, '2025-04-10 14:28:11', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218465995366402, '123123213', '<p>213</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:29:07', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218530537316353, '1231231', '<p>3123123</p>', 1, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:29:22', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218742664241153, '1231231', '<p>3123123</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:30:13', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218793268518914, '1231231', '<p>3123123</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:30:25', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910218793398542337, '1231231', '<p>3123123</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:30:25', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910220171273560065, '1221', '<p>1212</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 1, 1, '2025-04-10 14:35:54', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910220207826919426, '123213', '<p>1312321</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:36:02', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910220240492158978, '321312', '<p>312312</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 1, 1, '2025-04-10 14:36:10', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910220318527184897, '13123', '<p>123123123</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:36:29', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910220353503485954, '1231', '<p>23123123</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:36:37', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910220717376135169, '111', '<p>111</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 1, 1, '2025-04-10 14:38:04', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910221687388626946, '131', '<p>3123123</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 0, 1, '2025-04-10 14:41:55', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910221805982572545, '绕弯儿', '<p>热污染玩儿</p>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 1, 1, '2025-04-10 14:42:23', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910225248528834561, '1231', '<ul><li>防守打法萨芬</li><li>防守打法萨芬防守打法萨芬防守打法萨芬</li><li></li><li>防守打法萨芬</li><li>防守打法萨芬防守打法萨芬</li><li>v防守打法萨芬</li><li>防守打法萨芬</li><li>防守打法萨芬</li><li>防守打法萨芬</li><li>防守打法萨芬</li><li></li><li>防守打法萨芬</li><li>防守打法萨芬</li><li>防守打法萨芬</li><li>防守打法萨芬</li></ul>', 2, 1, 2, '[{\"name\":\"admin\",\"id\":\"1\"}]', 1, 1, '2025-04-10 14:56:04', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1910226460217122817, '66', '<p>666</p>', 1, 1, 1, NULL, 1, 1, '2025-04-10 15:00:53', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1920025175952531457, '平台升级公告', '<p>尊敬的用户,您好:</p><p>为提供更优质的服务,我们计划在2025年3月26日22:30后进行平台升级,预计在2025年3月27日6:00前恢复服务。如对您造成不便,敬请谅解!</p>', 2, 1, 1, NULL, 0, 1, '2025-05-07 15:57:29', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1922565118742548482, '理想之家', '<p>理想之家和希望之光</p>', 1, 1, 2, '[{\"name\":\"syj测试001\",\"id\":\"901369472502116370\"}]', 0, 1, '2025-05-14 16:10:18', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1922566438799069186, '永葆青春', '<p>青春盒子</p>', 2, 1, 1, NULL, 0, 1, '2025-05-14 16:15:33', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1922900784781258753, '<script>alert(`1`)</script>', '<p><script>alert(`1`)</script></p>', 1, 1, 1, NULL, 1, 1, '2025-05-15 14:24:08', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1922900814955081729, '<script>alert(`1`)</script>', '<p><script>alert(`1`)</script></p>', 1, 1, 1, NULL, 1, 1, '2025-05-15 14:24:15', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1972553526434930690, '升级版本', '<p>升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,升级版本版本升级,</p>', 1, 1, 1, NULL, 0, 1, '2025-09-29 14:46:24', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1983736325732904962, '升级版本', '<p><span style=\"color: rgba(0, 0, 0, 0.88); background-color: rgb(250, 250, 250); font-size: 14px;\">升级版本</span></p>', 2, 1, 1, NULL, 0, 1, '2025-10-30 11:22:51', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1990319395143475201, '222挖到222挖到222挖到222挖到222挖到222挖到', '<p>222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到222挖到</p>', 1, 1, 2, '[{\"name\":\"ceshi\",\"id\":\"901407430759718913\"}]', 1, 1, '2025-11-17 15:21:37', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1990323067801853954, '测试消息', '<p>测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息测试消息</p>', 1, 1, 2, '[{\"name\":\"2223\",\"id\":\"901435287762473008\"}]', 0, 1, '2025-11-17 15:36:12', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1990323150400282626, '测试消息111111111', '<p>121</p>', 2, 1, 2, '[{\"name\":\"2223\",\"id\":\"901435287762473008\"}]', 0, 1, '2025-11-17 15:36:32', NULL, NULL); INSERT INTO `biz_notice` (`id`, `title`, `content`, `notice_type`, `status`, `user_type`, `user_json`, `delete_flag`, `create_by`, `create_date`, `update_by`, `update_date`) VALUES (1990330703892996097, '消息测试', '<p>11111</p>', 1, 1, 1, NULL, 0, 1, '2025-11-17 16:06:33', NULL, NULL); COMMIT; 这些语句支持国产瀚高运行吗
11-21
内容概要:本文档是一份关于交换路由配置的学习笔记,系统地介绍了网络设备的远程管理、交换机与路由器的核心配置技术。内容涵盖Telnet、SSH、Console三种远程控制方式的配置方法;详细讲解了VLAN划分原理及Access、Trunk、Hybrid端口的工作机制,以及端口镜像、端口汇聚、端口隔离等交换技术;深入解析了STP、MSTP、RSTP生成树协议的作用与配置步骤;在路由部分,涵盖了IP地址配置、DHCP服务部署(接口池与全局池)、NAT转换(静态与动态)、静态路由、RIP与OSPF动态路由协议的配置,并介绍了策略路由和ACL访问控制列表的应用;最后简要说明了华为防火墙的安全区域划分与基本安全策略配置。; 适合人群:具备一定网络基础知识,从事网络工程、运维或相关技术岗位1-3年的技术人员,以及准备参加HCIA/CCNA等认证考试的学习者。; 使用场景及目标:①掌握企业网络中常见的交换与路由配置技能,提升实际操作能力;②理解VLAN、STP、OSPF、NAT、ACL等核心技术原理并能独立完成中小型网络搭建与调试;③通过命令示例熟悉华为设备CLI配置逻辑,为项目实施和故障排查提供参考。; 阅读建议:此笔记以实用配置为主,建议结合模拟器(如eNSP或Packet Tracer)动手实践每一条命令,对照拓扑理解数据流向,重点关注VLAN间通信、路由选择机制、安全策略控制等关键环节,并注意不同设备型号间的命令差异。
多旋翼无人机组合导航系统-多源信息融合算法(Matlab代码实现)内容概要:本文围绕多旋翼无人机组合导航系统,重点介绍了基于多源信息融合算法的设计与实现,利用Matlab进行代码开发。文中采用扩展卡尔曼滤波(EKF)作为核心融合算法,整合GPS、IMU(惯性测量单元)、里程计和电子罗盘等多种传感器数据,提升无人机在复杂环境下的定位精度与稳定性。特别是在GPS信号弱或丢失的情况下,通过IMU惯导数据辅助导航,实现连续可靠的位姿估计。同时,文档展示了完整的算法流程与Matlab仿真实现,涵盖传感器数据预处理、坐标系转换、滤波融合及结果可视化等关键环节,体现了较强的工程实践价值。; 适合人群:具备一定Matlab编程基础和信号处理知识,从事无人机导航、智能控制、自动化或相关领域研究的研究生、科研人员及工程技术人员。; 使用场景及目标:①应用于多旋翼无人机的高精度组合导航系统设计;②用于教学与科研中理解多传感器融合原理与EKF算法实现;③支持复杂环境下无人机自主飞行与定位系统的开发与优化。; 阅读建议:建议结合Matlab代码与理论推导同步学习,重点关注EKF的状态预测与更新过程、多传感器数据的时间同步与坐标变换处理,并可通过修改噪声参数或引入更多传感器类型进行扩展实验。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值