企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
```[flow] st=>start: 开始 e=>end: 结束 accept_name_pwd=>operation: 接收用户名和密码 query_db=>operation: 使用用户名查询数据库 name_isexist=>condition: 数据库中是否有数据? to_login=>operation: 走登录逻辑 to_register=>operation: 走注册逻辑 pwd_isright=>condition: 密码是否正确 insert_db=>inputoutput: 把用户名和密码写入数据库 st->accept_name_pwd->query_db->name_isexist name_isexist(yes)->to_login->pwd_isright name_isexist(no)->to_register->insert_db->e pwd_isright(yes,right)->e pwd_isright(no)->accept_name_pwd ```