12 lines
329 B
Plaintext
12 lines
329 B
Plaintext
@startuml
|
|
'https://plantuml.com/sequence-diagram
|
|
actor User
|
|
|
|
autonumber
|
|
|
|
User -> Server: 获取验证码
|
|
Server --> Mail: 服务将验证码发送到对应邮箱(服务需要保存code)
|
|
User -> Mail: 接收验证码
|
|
User -> Server: 使用用户名、密码和验证码进行注册(验证code)
|
|
Server -> User: 注册结果
|
|
@enduml |