业务关系图demo

复制下面代码,就能看到图

'https://plantuml.com/sequence-diagram

'https://plugins.jetbrains.com/plugin/7017-plantuml-integration
'安装:pycharm使用时序图的插件地址,直接导入时序图即可使用。

'ps:实线是正向接口请求、虚线是错误
autonumber

测试人员 -> 微信_获取token: 1.url \n2.method  \n3.id(业务相关) \n4.secret(企业微信相关)

微信_获取token -> 接口创建部门: 1.URL \n2.token \n3.method \n4.请求参数

微信_获取token -> 接口删除部门: 1.URL \n2.token \n3.method \n4.没请求参数(get方法)

测试人员 --> 接口删除部门: 1.url \n2.method \n3.业务相关 \n4.没有token \n直接创建部门,是没有权限删除的

测试人员 --> 接口创建部门: 1.url \n2.method \n3.业务相关 \n4.没有token \n直接创建部门,是没有权限创建的

接口创建部门 -> 接口删除部门: 1.URL \n2.token \n3.method \n4.没请求参数(get方法)\n5.创建后删除
@enduml

建议放在一个帖子里哈