用代码写uml并在线生成uml图

发布时间:2023年12月17日

可以用PlantUml写uml,并在线生成uml图。

@startuml
start

:登录系统;
if (用户名和密码正确?) then (yes)
  :进入系统首页;
  :展示主菜单;
else (no)
  :显示登录错误;
  stop
endif

:选择模块;
partition "课程信息" {
  :查看课程列表;
  :查看课程详情;
}
partition "课程签到" {
  :查看学习课程;
  :对未签到课程进行签到;
}
partition "公告信息" {
  :查看公告信息;
}
partition "签到提醒" {
  :查看未签到课程;
}

stop
@enduml

用这个在线编辑器,支持中文。

PlantUML EditorPlantUML online demo clienticon-default.png?t=N7T8https://plantuml-editor.kkeisuke.com/

文章来源:https://blog.csdn.net/exlink2012/article/details/135037369
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。