#requirement #plantUML #activity-diagram #functional-requirement
用半正式符号记录一些重要的功能、过程或特征可能是有用的。
以开源PlantUML(https://plantuml.com/)为例。给定以下活动描述,它可以创建一个图形版本:
@startuml
start
:authenticate;
:select product;
if (private customer?) then (yes)
:add\nVAT;
else (no)
:request\nVAT_ID;
endif
:create invoice;
stop
@enduml