提示1-9:使用活动图来描述功能要求!

提示1-9:使用活动图来描述功能要求!

#requirement #plantUML #activity-diagram #functional-requirement

用半正式符号记录一些重要的功能、过程或特征可能是有用的。

以开源PlantUML(https://plantuml.com/)为例。给定以下活动描述,它可以创建一个图形版本:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@startuml
start
:authenticate;

:select product;

if (private customer?) then (yes)
:add\nVAT;
else (no)
:request\nVAT_ID;
endif

:create invoice;
stop

@enduml

simple-activity